3D Starchart - Teaser 1: Rendering Planets
-
Here’s another update. Greatly improves system selection, including showing the name as you move over it (although it has a horrible magenta flash each time, but that could just be me). Made the gate lines green (I had also intended to make systems with both gate & hole use yellow, but that wasn’t as simple as it sounded) and gave gates precedence over holes. Less strict model loading, so Omicron Alpha (and perhaps others) will load. Even more memory fixes. Improved font support (e.g. Lübeck in Hamburg). As before, this is just the binaries plus patch (for r116).
-
Pre Alpha Release 0.0.0.5 is available, as always, on Sourceforge: click
Includes Adoxas 2nd patch (this time I actually applied it, so it should all work)
@Adoxa:
Thanks so much for your system selection improvement, somehow I didn’t get the math right. I continued your work and added differently coloured stars.
Your memory improvements are working graet, too. Is’t so simple, really, but somehow I always rely too much on the garbage collector^^I removed a restriction that prevented models without names from being drawn, resulting in much mor “stuff” in the systems.
Added some experimental lighting.
Added a simple launcher that allows you to select the Freelancer install to use and change the window size or make it fullscreen.
AND: This time I visited all (vanilla) systems and they all worked (at least on my pc) so hopefully there aren’t so many errors as in my previous releases.
-
Nice job so far on this, i am having allot of fun working with it.
I am wondering though, if you have any ideas on how to go about using the left mouse button to select scene objects and have them highlighted like in FL when you select something. I tried a few ideas but nothing has really worked yet.
For what i am doing i added a combobox that is populated with all the valid system objects of which i can select items, move the camera close to it, and show the objects properties in a property grid. but i would prefer to use the left mouse button in the scene to select them instead.
–—
I have also started extending the FLApi to add in a Faction Class, and classes for the Market ie:
FLApi.Market.Commodities, FLApi.Market.Ships, FLApi.Market.Equipement
i just started on them so no real code yet.
the Class: FLApi.Factions.FLFaction is working fine, all it really does though is to parse the initialworld.ini to retrieve the Proper name of factions. Although this will be extended to include a list of their reputations with other factions, which will be easy enough to do , just have not coded it yet.
I am also working on extending the Costume class , which so far was a simple thing since you already had the code in place and parsing out those lines anyway. Again, plans are to extend this Class.
Because of the project i am using these in i had to convert the Starchart project into VB.NET, but somewhere along the lines of the conversion process something went wrong and now Planets are not being physically rendered in the scene, which also has a side effect of messing up the scene lighting. I have not really delved into this problem too much.
Anyway Cheers, and nice job so far.
-
I am wondering though, if you have any ideas on how to go about using the left mouse button to select scene objects and have them highlighted like in FL when you select something. I tried a few ideas but nothing has really worked yet.
You need to project the mouse position into 3D space. I was going to include it but didn’t have the timne yet.
Because of the project i am using these in i had to convert the Starchart project into VB.NET, but somewhere along the lines of the conversion process something went wrong and now Planets are not being physically rendered in the scene, which also has a side effect of messing up the scene lighting.
In theory it should work as C# and VB.NET are essentially the same, but I’ve never tried this (why would anyone want to use VB when they can have C# )
Good luck with your project, I will continue to update Starchart as soon as I have time.
-
Well i am casting a ray from the mouse x,y into 3d space. this is the function that handles that:
Ray GetPickRay() { MouseState mouseState = Mouse.GetState(); int mouseX = mouseState.X; int mouseY = mouseState.Y; Vector3 nearsource = new Vector3((float)mouseX, (float)mouseY, 0f); Vector3 farsource = new Vector3((float)mouseX, (float)mouseY, 1f); Matrix world = Matrix.CreateTranslation(0, 0, 0); Vector3 nearPoint = GraphicsDevice.Viewport.Unproject(nearsource, proj, view, world); Vector3 farPoint = GraphicsDevice.Viewport.Unproject(farsource, proj, view, world); // Create a ray from the near clip plane to the far clip plane. Vector3 direction = farPoint - nearPoint; direction.Normalize(); Ray pickRay = new Ray(nearPoint, direction); return pickRay; }
the problem comes in when i loop through all the objects in the scene to get the object that is suppose to be selected the result value returned from ray.intersects is always : -1.#IND
so i tried changing the farSource to be the static system size, which does not really work at all except to move the camera to above the sun, or in the case of New York System, sometimes above West Point (mostly though is ends up above the sun)
–-forgive my ignorance of XNA here, i have not done allot with XNA so still feeling my way around to a large degree.
and for the planet rendering issue, i am not at all sure what is going on, the code is pretty much identical (just written in VB.NET not C#). As i said, the Planets are being added as valid system objects but just nothing rendering, or maybe they are rendering but could it be that the ‘scale’ of the planets is not being calculated right? not sure to be honest, my code matches yours so not sure what i am doing wrong.
I may try changing my app into C# and see if that changes anything.
to your question about why VB.NET instead of using C#? well mostly because i am more comfortable in VB environment. Nothing to do with the language or anything. And secondly, because i can. Also because there is a few quirks about C# i am not fond of.
Don’t get me wrong though, i can code in C# just as well as VB or C++.
-
well well, i will be a g*&&^ d&^*&^& monkey’s uncle.
i did a quite conversion to C# of part of my project and bang, planets and proper lighting.
so i am moving forward to redo my project in solid C#.
anyway just thought i would let you know , cheers.
-
How do you convert between C# and VB.NET? Is it a VisualStudio function?
I’d like to try it so I can see what it does to my planet creation code.I didn’t want to start a religious war about programming languages here (well thankfully it didn’t really start^^). Of course you should use VB if you have good reasons to do so.
Hopefully I’ll find some time at the weekend to experiment with object selection (I had something similar working in another project, but it might be a bit harder here)
Don’t worry about XNA, I’m a newbie, too. I actually did Starchart to learn a bit more about XNA than what you do in tutorials.
-
i have a probleme with a custom FL :
“mat count 11!=12” or something similar.
i will post the exact message when i have some more time.
I think it’s a probleme in the mod file, but didn’t crash the game, anyway to ignore it and continue ?Good job for your 0.5 release, it’s work like a charm on vanilla FL, fast and precise
-
No worries mate, i did not take it as a religious ‘C# vs VB/NET’ war. :P.
for converting code to and from c# to vb.net i use this:
works pretty good.
you just have to watch out though, some adjustments to the code need to be done.
for example, in your xna classes the object:
private Game game;
in VB would be:
private game as Game
but this will not work, so what i did is to simply change the varaible name to: igame:
private igame as Game
once you go to the page, copy your entire class code, paste it into the top textarea, and click convert. rinse repeat for each one.
there may be other things that may need to be adjusted once you put the converted code into a vb project but those should be pretty simple to do.
and to get the game to run you need to import the system.threading namespace, and do something like this, at least this is what i had to do:
Dim gameThread As Thread 'class level decaration
i put the thread start in the sub new, as mentioned below, because i have the game embedded in a custom user control.
public sub new()
gameThread = New Thread(AddressOf RunGame)
gameThread.Start()
end subprivate sub RunGame()
igame = New MainGame(mhandle, fdata, 1280, 720, True)
igame.Run()
end subi have embedded the game inside a windows usercontrol and then inside a windows form.
here is a screenshot of it in it’s VB.NET version, and as you can see, lighting is all messed up because of the lack of planet rendering. And like i mentioned, I am still feeling my way around XNA. Using VB.NET or C# for game development is kinda foreign territory for me, for game dev i am use to C++, this though is kinda different. Although, C# feels more comfortable than VB for this.
if you use MSN, you can get me there at: r.orr AT hotmail DOT ca
-
Ezekiel wrote:
i have a probleme with a custom FL :
“mat count 11!=12” or something similar.I think I found where this comes from. Happens if a “material library” node contains more materials than its “material count” value would suggest. But it will still work, this is one of my many exceptions that are thrown on principle if there’s an error in the file though the program would still work. Will remove it in the next release (which will come tonight or tomorrow ;-), its already gone in the code on svn, if you want to build it yourself )
Ezekiel wrote:
…anyway to ignore it and continue ?If that works (see above) why not
TheDvDMan wrote:
Wait… Does it read costum models? Or I’ll have to wait for the Beta for that?It might/should. Please, try it and give me some feedback if and how well it worked
@J.Walker
OK, that sounds much more complicated / time consuming than I hab hoped, so I can’t promise I’ll really try it…
But considering that so much has to be changed, of course there open up hundreds of possible sources for the planet rendering problem as well as the lighting problem (they aren’t really connected).
Rendering of models and planets isn’t much different except that the vertices for planets don’t come from a file but are generated by a sphere formula (I didn’t come up with that, copied it ). So the problem must lie there somewhere (PlanetRendere.generateSphere).
Lighting is another thing, it’s all done in the shader (StarchartContent/effects/Models.fx and Planets.fx) so maybe there is a problem with the content pipeline (thats an XNA feature usually used to load all models, textures and effects. But as everything except these effects is loaded from the Freelancer game files it could be).
Well, as of now I can only speculateAbout game development:
I know that it is usually done in C++ but I hate that language
Well seems I’m simply spoiled by garbage collection and large, well documentet libraries combined with welll working auto-complete, in other words by Java and .NET
And as .NET is much more performant than Java (and with VisualStudio has the best IDE ever) my choice was natural. As for C#, I really like the syntax and language features.
When I found out there was the XNA framework as wrapper for the DirectX API it was clear to me that my first serious game / 3D graphics project would be done in C# using XNAWell, so much about my motives…
Your windows forms intergation looks really nice. I’m really glad my work seems already fit for use in other projects.
I finally worked out how to select objects in 3D space (your approach was exactly the right thing, except that for some strange reason it doesn’t work when you set the z values of nearSource and farSource to 0 and 1, it must be larger than 1 so setting it to 2 and 3 works great. To find out what objects lie beneath the cursor I added BoundingBoxes to all objects so we can simply use Ray.Intersects)
I will update the SVN shortly and, as stated above, upload release 0.0.0.6 some time tonight or tomorrow.
-
This looked pretty cool, so I downloaded the binaries.
WARNING: The runtime version supported by this application is unavailable.
Using default runtime: v1.1.4322** (Starchart.exe:10299): WARNING **: The following assembly referenced from /home/alex/Downloads/FLStarchart/Starchart.exe could not be loaded:
Assembly: Microsoft.Xna.Framework.Game (assemblyref_index=0)
Version: 4.0.0.0
Public Key: 842cf8be1de50553
The assembly was not found in the Global Assembly Cache, a path listed in the MONO_PATH environment variable, or in the location of the executing assembly (/home/alex/Downloads/FLStarchart/).** (Starchart.exe:10299): WARNING **: Could not load file or assembly ‘Microsoft.Xna.Framework.Game, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553’ or one of its dependencies.
Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly ‘Microsoft.Xna.Framework.Game, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553’ or one of its dependencies.
File name: “Microsoft.Xna.Framework.Game, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553”And under Windows:
Any ideas?
-
Have you installed the XNA framework? Seems like XNA 4 is what you need:
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=a88c6dec-aeae-42cd-a108-d35c013c3b97
-
FriendlyFire wrote:
Seems like XNA 4 is what you needYou definitely do.
And it looks like you are using mono, I have no idea if that works, I only tested it on windows 7 professional 64bit with both .NET and XNA frameworks installed (both in the development, not the client / redistributable versions)
-
Thats good news about the object selection, i will eagerly wait for the 06 release.
for costumes it is really not that difficult to get than to display
In: FLApi.Characters.Costume.cs, change it to look like this:
using System; using System.Collections.Generic; using System.Linq; using Microsoft.Xna.Framework; using FLApi; using FLApi.Solar; using FLApi.Universe; using FLParser; using FLParser.Ini; using FLParser.Utf; namespace FLApi.Characters { public class Costume { /// <summary>/// Gets or Sets the selected SpaceObject's Docking Character Costume ///</summary> public string costume { set { m_costume = value; setcostume(); } get { return m_costume; } } private string m_costume; public Costume(string s1, string s2) { if (s1 == null) s1 = ""; if (s2 == null) s2 = ""; if (s1 != String.Empty && s2 == String.Empty) this.costume = s1; if (s1 == String.Empty && s2 != String.Empty) this.costume = s2; if (s1 != String.Empty && s2 != String.Empty) this.costume = s1 + ", " + s2; } /// <summary>/// changes the spacecostume for the selected spaceobject ///</summary> private void setcostume(string newcostume = "") { // TODO: code it to allow changing the space_costume (Class: FLAPi.Characters.Costume, Function: setcostume(string newcostume = "")) if (!string.IsNullOrEmpty(newcostume)) { this.m_costume = newcostume; } } } }
then in FLApi.Universe.SpaceObject.cs
in function: public SpaceObject(…)
locate: case “space_costume”:
and the line before: break;
change it to:
SpaceCostume = new Costume(e[0].ToString(), e[1].ToString());and when you want to display the costume string read it from the costume property:
spaceObject.SpaceCostume.costume;