UniverseGen and XMLPlotter

Developed or developing a new product in PureBasic? Tell the world about it.
dracflamloc
Addict
Addict
Posts: 1648
Joined: Mon Sep 20, 2004 3:52 pm
Contact:

UniverseGen and XMLPlotter

Post by dracflamloc »

http://www.dracsoft.com/zips/universegen.zip

I'm considering making a space sim game, and this is my first little dip into randomly generated content for the game.

Enjoy =P

Some of the names are quite comical. An example generated.xml is included. Here's an example (comical) planet in this universe:

Code: Select all

<planet>
	<name>Potholes</name>
	<x>7021</x>
	<y>42402</y>
	<type>Asteroid</type>
	<category>Mining</category>
</planet>
<planet>
	<name>Spermrenaults</name>
	<x>22159</x>
	<y>49154</y>
	<type>Base</type>
	<category>Service</category>
</planet>
"Oh I BET its a 'service' base. Probably has Hasselhoff in there..."
dracflamloc
Addict
Addict
Posts: 1648
Joined: Mon Sep 20, 2004 3:52 pm
Contact:

Post by dracflamloc »

Some more gems:

Code: Select all

<planet>
		<name>Spermoblastic</name>
		<x>5899</x>
		<y>47275</y>
		<type>Base</type>
		<category>Pleasure</category>
	</planet>
<planet>
		<name>Fondl</name>
		<x>763</x>
		<y>6953</y>
		<type>Asteroid</type>
		<category>Pleasure</category>
	</planet>
Post Reply