+acadiel Posted August 21, 2011 Share Posted August 21, 2011 Can't wait to see it!!!!! Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2353698 Share on other sites More sharing options...
idflyfish Posted August 21, 2011 Share Posted August 21, 2011 I am the biggest procrastinator in the world!!! I have started working on Ultimate Planet in January 09, but have not done any work on it for at least 6 months... I just have too many other interests competing with the project, with Owen's XB contest being the icing on the cake. Nonetheless, I really want to finish that project in time for the Chicago TI Faire, and I thought if I started some kind of development blog here it may force me to work on it more frequently. We shall see... Ultimate Planet is a space themed wargame set in the far future where resources have become very scarce in the known galactic space, and warring factions constantly fight for the few remaining planets that still harbor some. Ultimate Planet is one of those, and you control one of the four competing space fleets trying to get your hands on it. Besides your less than amicable neighbors, the planet is also defended by an asteroid belt as well as deadly defense satellites, and rogue meteorites randomly roam its immediate vicinity. It will take all your tactical skills and probably a bit of luck to succeed in your mission. Here are a few screen shots of the current state of the game: The game is being programmed completely in assembly and using the full bitmap mode, which means that everything you see on the screen including the text has been put there pixel by pixel. Luckily, I had previously developed several subroutines for SkyChart which also used the bitmap mode, and that helped reduce the amount of work needed. The game space takes 4 full bitmap screens which can be scrolled, and all objects are stored in an array. The background hex field is static, and the location of the objects is updated in real time when the screen is scrolled. The object array contains the following information: Status (in space, stowed, or dead), unique ID, Y coordinate (global), X coordinate (global), character definition array offset, color. The offset points to the location of the character definition in a separate array, which saves space since many objects have similar shapes. The fleets consist of cruisers, fighters, infantry and armored units. The planet has several production centers as well as geographic features such as mountains, rivers, and plains. Six defense satellites orbit closely. The visible screen acts as a window over the world map, and the objects' global coordinates are always checked against the local coordinates to verify visibility. Movement is via a cursor. Locating the cursor over a movable object will turn it from cyan to red, and the object's attributes are displayed, along with any cargo (only applicable to cruisers). Movement is not all or none, and one can move an object a fraction of its movement potential, leave it, then come back to it again later and move it some more. This should provide more tactical flexibility. I have yet to create the combat tables, as well as the AI which is likely going to be challenging given the rich tactical environment. The game will consist of 15 turns, at the end of which the side who has conquered the most production centers on the planet wins. Very impressive. I love these types of games. A multiplayer version of this using a bulletin board to store all of the state/data would be sweeeeeeeeeeet! Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2353803 Share on other sites More sharing options...
+Vorticon Posted August 21, 2011 Author Share Posted August 21, 2011 Yes, it would be. I may consider some form of multiplayer scheme if I still have any energy left after I eventually finish the single player version Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2354057 Share on other sites More sharing options...
JamesD Posted August 24, 2011 Share Posted August 24, 2011 For a somewhat similar game, check out Compute #74 (July, 1986) Hex War I think that was after they dropped the TI so it's probably just for Apple II, Atari, C64, and IBM. It could be an interesting project for someone. Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2356203 Share on other sites More sharing options...
+Vorticon Posted August 26, 2011 Author Share Posted August 26, 2011 For a somewhat similar game, check out Compute #74 (July, 1986) Hex War I think that was after they dropped the TI so it's probably just for Apple II, Atari, C64, and IBM. It could be an interesting project for someone. Actually no, the TI was still supported at the time, but it did not have the necessary resolution in XB to allow that kind of game. It definitely seems interesting from the description but the online Compute! archive unfortunately does not include the program listings... If anyone here happens to have that issue and is willing to make copies of the listing for the PCJr, I would love to get it from you. I could then type it in and see if how it compares to my game. Thanks for the reference Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2357966 Share on other sites More sharing options...
JamesD Posted August 29, 2011 Share Posted August 29, 2011 (edited) Actually no, the TI was still supported at the time, but it did not have the necessary resolution in XB to allow that kind of game. It definitely seems interesting from the description but the online Compute! archive unfortunately does not include the program listings... If anyone here happens to have that issue and is willing to make copies of the listing for the PCJr, I would love to get it from you. I could then type it in and see if how it compares to my game. Thanks for the reference I'm in the progress of typing in the Apple II version. Are you talking about the torrent version of the archive or something else? The torrent definitely has listings. Edited August 29, 2011 by JamesD Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2359895 Share on other sites More sharing options...
+Vorticon Posted August 29, 2011 Author Share Posted August 29, 2011 Actually no, the TI was still supported at the time, but it did not have the necessary resolution in XB to allow that kind of game. It definitely seems interesting from the description but the online Compute! archive unfortunately does not include the program listings... If anyone here happens to have that issue and is willing to make copies of the listing for the PCJr, I would love to get it from you. I could then type it in and see if how it compares to my game. Thanks for the reference I'm in the progress of typing in the Apple II version. Are you talking about the torrent version of the archive or something else? The torrent definitely has listings. I was not aware there was a torrent for Compute available. I generally stay away from torrents for security reasons but I'll look it up anyway. Thanks. Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2360174 Share on other sites More sharing options...
matthew180 Posted August 29, 2011 Share Posted August 29, 2011 I have that COMPUTE! edition. I just dug it out of a box that has been sitting in the attic for literally 23 years. Seems I had a subscription to COMPUTE! for most of the mid 80's. I'll make a scan of the article tonight. For understanding the program, the Amiga code actually looks like the more promising since it does not use line numbers, and thus has descriptive labels and better use of GOSUB and functions. Anyway, I'll scan all the code versions. Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2360199 Share on other sites More sharing options...
+Vorticon Posted August 29, 2011 Author Share Posted August 29, 2011 I have that COMPUTE! edition. I just dug it out of a box that has been sitting in the attic for literally 23 years. Seems I had a subscription to COMPUTE! for most of the mid 80's. I'll make a scan of the article tonight. For understanding the program, the Amiga code actually looks like the more promising since it does not use line numbers, and thus has descriptive labels and better use of GOSUB and functions. Anyway, I'll scan all the code versions. Thanks Matt! Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2360390 Share on other sites More sharing options...
JamesD Posted August 29, 2011 Share Posted August 29, 2011 The complete set of Compute scans: 1-40: magnet:?xt=urn:btih:CA77F57982333E4A1CD435335572FF9A600E6F2A 41-80: magnet:?xt=urn:btih:537E94C794B7520CABEFBD165EA667A4123BC7FB 81-120: magnet:?xt=urn:btih:C49E6FA15143426C6EC0A3C0A4430302EEB2091A 121-168 (partial): magnet:?xt=urn:btih:4B109B6CE84C7B77430C3B3C85BB9B3AD9898F0F Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2360415 Share on other sites More sharing options...
matthew180 Posted August 30, 2011 Share Posted August 30, 2011 Here is a link. I imaged the magazine at 300dpi, so the 22 pages are about 32MB. Hope it helps. http://test.swmirror.com/hexwar.pdf Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2360459 Share on other sites More sharing options...
+Vorticon Posted August 30, 2011 Author Share Posted August 30, 2011 Here is a link. I imaged the magazine at 300dpi, so the 22 pages are about 32MB. Hope it helps. http://test.swmirror.com/hexwar.pdf Beautiful! Much appreciated I'll look at it and see what I can learn from it. Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2360481 Share on other sites More sharing options...
matthew180 Posted August 30, 2011 Share Posted August 30, 2011 I updated the PDF. I didn't realize that the 8.5x11 page size was cutting off the edges... No information was really cut off, but details like that bother me, so I increased the page size to hold the whole scanned page. So re-download if you want (same link). Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2360805 Share on other sites More sharing options...
+Vorticon Posted August 30, 2011 Author Share Posted August 30, 2011 (edited) I updated the PDF. I didn't realize that the 8.5x11 page size was cutting off the edges... No information was really cut off, but details like that bother me, so I increased the page size to hold the whole scanned page. So re-download if you want (same link). Thanks I was hoping to peek at the AI section, only to find out that this was a 2 player game Nonetheless, there are some interesting features like zones of control worth studying. Edited August 30, 2011 by Vorticon Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2360831 Share on other sites More sharing options...
matthew180 Posted August 30, 2011 Share Posted August 30, 2011 I did not look in to the code really, but it seemed a little short to have a computer AI. I think a good computer AI would be the hardest part of making a game like this, especially making one that can challenge a human, and have difficulty levels. Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2360849 Share on other sites More sharing options...
rocky007 Posted August 30, 2011 Share Posted August 30, 2011 i agree, for this type of games, it's really hard to have smart AI.. simple "conditions" and "structure" are not enough to have a brainy computer good luck Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2360982 Share on other sites More sharing options...
+Vorticon Posted August 30, 2011 Author Share Posted August 30, 2011 i agree, for this type of games, it's really hard to have smart AI.. simple "conditions" and "structure" are not enough to have a brainy computer good luck Au contraire! You'll be surprised how a few simple rules can create enormous complexity. Think for example of Conway's LIFE. There are only 4 simple rules and yet you can get an infinite amount of variability. Same goes for chaos theory as demonstrated in my Chaos Musings suite. The problem really lies in finding the judicious combination of simple rules perhaps spiced up with a little randomization, which is by no means an easy task. I have already sketched a series of 6 rules for the AI opponents which I think will create a relatively challenging game, but I won't know for sure until I test it out. Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2361279 Share on other sites More sharing options...
ti99iuc Posted August 31, 2011 Share Posted August 31, 2011 yesterday in the Android Market, I found this game: zDefence. I was surprised at the similarity with this ... In this way the fans of the game and have ti99 Android can experience the "thrill" to try this too:) .... I do not know if they are equal as a concept ... But it seems that the graphics ... : D http://www.androidear.com/news/amazonappstore-free-app-of-the-day-%E2%80%93-zdefense/?lang=it Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2361553 Share on other sites More sharing options...
rocky007 Posted August 31, 2011 Share Posted August 31, 2011 i agree, for this type of games, it's really hard to have smart AI.. simple "conditions" and "structure" are not enough to have a brainy computer good luck Au contraire! You'll be surprised how a few simple rules can create enormous complexity. Think for example of Conway's LIFE. There are only 4 simple rules and yet you can get an infinite amount of variability. Same goes for chaos theory as demonstrated in my Chaos Musings suite. The problem really lies in finding the judicious combination of simple rules perhaps spiced up with a little randomization, which is by no means an easy task. I have already sketched a series of 6 rules for the AI opponents which I think will create a relatively challenging game, but I won't know for sure until I test it out. yes i agree, but in your case, i'm not so sure... Is your game need computer/human to think many turns in advance to elaborate a strategy ? It's little bit like playing chess in with pure AI and not pattern table. i'll think about this, it's really interesting Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2361563 Share on other sites More sharing options...
+Vorticon Posted September 2, 2011 Author Share Posted September 2, 2011 yesterday in the Android Market, I found this game: zDefence. I was surprised at the similarity with this ... In this way the fans of the game and have ti99 Android can experience the "thrill" to try this too:) .... I do not know if they are equal as a concept ... But it seems that the graphics ... : D http://www.androidear.com/news/amazonappstore-free-app-of-the-day-%E2%80%93-zdefense/?lang=it Hex-based wargaming has been around for quite a while, starting with table top games beautifully crafted and wickedly complex rules in the 60's and 70's Ultimate Planet is actually an adaptation of such a game although its original rules were simpler (I talk about this in an earlier post under this thread). If you are interested in this type of games, I would highly recommend the V for Victory series for the PC which were released in the early 90's and can be found online (hotud.com) although I own the original games. You can still run them using DosBox under Win 7. Another option is the modern Hearts of Iron III which you can still purchase, although this is quite a daunting game with all sorts of strategic, tactical, economic and political aspects and covers the entire WWII conflict and may not be your best first exposure to this genre. As for ZDefense, I downloaded it on my Android phone and will be playing with it a bit later today Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2363255 Share on other sites More sharing options...
ti99iuc Posted September 2, 2011 Share Posted September 2, 2011 Hex-based wargaming has been around for quite a while, starting with table top games beautifully crafted and wickedly complex rules in the 60's and 70's Ultimate Planet is actually an adaptation of such a game although its original rules were simpler (I talk about this in an earlier post under this thread). If you are interested in this type of games, I would highly recommend the V for Victory series for the PC which were released in the early 90's and can be found online (hotud.com) although I own the original games. You can still run them using DosBox under Win 7. Another option is the modern Hearts of Iron III which you can still purchase, although this is quite a daunting game with all sorts of strategic, tactical, economic and political aspects and covers the entire WWII conflict and may not be your best first exposure to this genre. As for ZDefense, I downloaded it on my Android phone and will be playing with it a bit later today Thankyou for your great explaination ! ... i can't wait to be able to play to your Ultimate Planet on my ti99... so i must play with android at now Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2363669 Share on other sites More sharing options...
Opry99er Posted July 14, 2013 Share Posted July 14, 2013 Okay buddy... Let's resurrect the old girl..... Coding aside, what have you been working on in your head for this one? With an epic projectile this one, surely you have been scheming in that head of yours during this idle time. Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2791740 Share on other sites More sharing options...
+Vorticon Posted July 14, 2013 Author Share Posted July 14, 2013 Okay buddy... Let's resurrect the old girl..... Coding aside, what have you been working on in your head for this one? With an epic projectile this one, surely you have been scheming in that head of yours during this idle time. Still re-familiarizing myself with the game code so far. There are parts that I still don't quite fully grasp, and I coded them !!! The game will be finished and demo'ed at the November Chicago Faire short of a catastrophic event, but everyone here will have the opportunity to playtest it prior so we can root out the inevitable hidden bugs . A cartridge conversion at some point would be nice, perhaps even with battery backup for saving games in progress, so that it will be accessible to anyone with just a bare console, and I might work with Jon on this one. As for the game features, most of them are already incorporated as seen in the previous demos, and the AI is really the main missing piece still. I do have a rough algorithm for it though, where a few well selected simple rules will lead to surprising complexity. So there you go Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2791819 Share on other sites More sharing options...
Omega-TI Posted July 14, 2013 Share Posted July 14, 2013 I am the biggest procrastinator in the world!!! You are a speaker of truth... this thread is 39 months old! Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2791839 Share on other sites More sharing options...
+Vorticon Posted July 14, 2013 Author Share Posted July 14, 2013 You are a speaker of truth... this thread is 39 months old! Well, this is a vintage forum, so things need to marinate a bit 1 Quote Link to comment https://forums.atariage.com/topic/162102-ultimate-planet/page/4/#findComment-2791901 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.