Hello, I'm not familiar with java or anything but even the basic concepts of computer science, so this will be uphill battle:
Loading values for system.addPlanet() from Tab seperated value files (TSV)
Let's say I'm making a bunch of planets using system.addPlanet()
But then what if I playtest it and they feel too far apart, or too close together or something, and I want to change all of them, say multiply all the orbit radii by 0.8 or something. Going through every file and every system.addPlanet() and doing this would be really tiresome.
It seems like it would be much easier to load all the fields of a TSV into an array and then refer to those in the system.addPlanet(). Then I could quickly alter all the TSV values in excel and so forth all at once were it necessary. Unless loading an array of tsv values is going to do something bad to memory or performance, I really know nothing of such matters.
Does the java starsector uses have a tsv parsing function or library or whatnot? If someone has a link to where i can read about it I'm willing to go try and read it myself, rather than forcing you to spoonfeed me here.