Hi and thank you for reading. Hopefully I'm posting this in the right forum.
I am working on a 2d space simulator and I'm trying to figure out the best way to create a realistic starscape.
The POV for the player will be from a spaceship's cockpit, very similar to the old Wing Commander games (Privateer is the one which I'm drawing most of my inspiration from).
I'm just getting started and one of the first tasks I'd like to complete is creating a realistic starfield. My plan initially was to procedurally generate stars on different layers to represent the distance of the player to the stars. This would give a field of depth but I quickly realized a flaw in my plans.
If the player pans the camera view I need the starfield to be representative of an actual celestial sphere. If the player pans left and then pans back to the right they should see the same starfield they were looking at previously. Same if they begin to move forwards and then move backwards.
I'm thinking that the best way to do this is to create an imaginary sphere if you will, and then to project points onto this sphere. At these coordinate projects I would render my sprites representing the stars.
Am I on the right track here in terms of how to accomplish this or am I way off. Could someone perhaps provide me with some reading material I could check out on any kind of formulas I could play around with to accomplish this? I'm admittedly pretty bad at math - coming from a server side web development background - so I would gladly accept any help I can get.
Thanks!