Librelancer 2022.02
-
Project Website: https://librelancer.net/
Current Version: 2022.02. Download - https://librelancer.net/downloads.html
–------------------------------------------------
Flight Demo: January 2017The Gameplay Demo option allows you to fly around a dodgy Defender!
Known issues in this demo:-
Sometimes crashes on startup with Intro Movies enabled. Make sure ‘Skip Intro Movies’ is checked.
-
Asteroids don’t collide.
-
The physics in general is way off
-
Some systems that worked before now crash: This is due to the particle engine failing to initialise (it’s unfinished).
Download:
–------------------------------------------------
Demo July 2016:
Change for this version:
-
Mac bundle!
-
Suns
-
Nebulae
-
Improved planet rendering
-
Intro movies
-
Improved performance in general
Screenshots June 2016:
Magellan Nebula
Kepler Nebula
–------------------------------------------------
March 2016:
DEMO NOW AVAILABLE: Download HereIf it doesn’t work:
Post a screenshot of your error along with your GPU model and OSDemo Instructions:
1. Make sure you have the .NET Framework version 4.5.1 installed
2. Download the file
3. Install everything in the “INSTALL FIRST” folder
4. Start Launcher.exe in the Librelancer folder
5. Point the Launcher to your VANILLA freelancer folder, and have fun–------------------------------------------------------------------------------
Hey guys!
I’ve uploaded some code here and started working on it. I’m progressing slowly but steadily, and since the last re-incarnation of this I’ve managed to get stuff rendering! If you look at the link previously you’ll see a nice render of Newark Station.
Contributors as always are appreciated. Skype me at crazy.ichiru, or just submit a pull request
-
-
I can have a look at the GLSL shader and OpenGl code once you have the basic stuff running. The problem is I have too many tasks at once (as always) so I rather invest time when I see that it is really worth it.
What strikes me is, that you write OpenGL 3.0 is needed. There is no fixed function pipeline anymore in 3.0, so why not write it for 2.0 and use the proper extensions? Should make it easier for you.
-
Cool! Chuck me a github username/e-mail and I’ll give you write access. I’ll PM you once I have a few things in.
The OpenGL 3.0 requirement is actually left-over from when I was using MonoGame (which turns out sucks at HLSL->GLSL conversions) and I’m actually writing for 2.0 at the moment.
Right now I’m not actually too knowledgeable when it comes to the graphics side of things. I’ve got .mat, .cmp, .ini (including binary), and .3db implemented already from the fork. It’s just a case of adding more UTF-based formats as I go.
This is the first screenshot I had when I was using MonoGame (notice the purple pittsburgh from crappy shader compiler), there is actually a rotation effect on Fort Bush already but that wasn’t really shown.
-
if you could make a similar Unity API level, then my tech demo could run without Unity
-
A little bump on this project. It’s been re-named to Librelancer, and I’ve switched from MonoGame to proper OpenGL 3.2. Most of New York is rendering properly, next up I’ll be implementing nebulae.
-
Will be good to make compatibility with oss fl server or even concatinate
-
A few years progress, and now there is a demo!
-
seems to crash everytime I try it
-
nvm
sorry my game wasnt vanilla, thats why it crashedlooking good so far
-
Wow, I’m mad impressed by the way you’re able to display that much using just native Freelancer files. This is great stuff.
By the way, it crashes on me if I have my joysticks plugged in. I don’t know if it’s because of those two specific sticks (Saitek X-55) or if it’s because with them plugged in I have 4 controllers available, but I figured I’d let you know. Here’s the crash I get:
-
Why485: Thanks for the info!
If you can reproduce that with a test project based on https://github.com/opentk/opentk please file a bug report there, since this is an OpenTK bug. If you can’t reproduce it there I’ll update my opentk reference to match current git master -
Updated with screenshots of Nebula work. New demo to come soon, but I want to iron out some issues and implement asteroid fields first
-
A new release!
-
Ichiru wrote:
A new release!Where?
-
In the OP?
-
This is what Fort Bush will look like once I can get the matrices to behave themselves: (Click for full size)
Unfortunately, getting the exhausts to orient correctly introduced a bunch of regressions elsewhere. Until I figure it out, all the exhausts shoot the wrong way. Progress is progress, though!
-
I see on your github page that LibreLancer is a re-implementation of freelancer in C#. What will this allow modders and players to do once you reach a final release stage? Will it be more moddable than the original? Please enlighten me on the features and advantages in a more noobish way since I can not grasp all the technical terms/
-
Once Librelancer gets closer to version 1.0 (and full Vanilla compatibility) it’s going to provide a lot of benefits.
For players:
-
Per-pixel lighting
-
Multi-core utilisation
-
macOS and Linux support
-
Better behaviour on modern windows: Using modern maintained APIs instead of ancient DirectX and DirectPlay means increased performance + less weird bugs.
For modders it’s a little more interesting, the biggest benefit I can see coming out of Librelancer is extremely improved error handling. In cases where Freelancer just crashed to desktop, Librelancer should output at the -very- minimum a stack trace of where the error occurred (like in RenderMaterial.Draw() or GameObject.Update()), if not much more detailed error information. Having source available also means that literally anything can be changed, and better plugins than FLHook (which is very tempermental) should be available.
-