Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
wiki:ideas:notes [2010/02/19 14:38] – created jeff | wiki:ideas:notes [2020/11/19 14:21] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Professional Game Development ====== | ====== Professional Game Development ====== | ||
- | I was the sole developer on every single project except where noted. | + | I was the sole developer on every single project except where noted. The art and animations were created by another individual. |
- | ===== L ===== | + | ===== L Project |
- | This was the first product. | + | This was the first product. As the sole developer I created the game loop and methods for switching between content, the content being the menu system and the levels. This product exposed some limitations with Flash AS2. |
- | ===== B ===== | + | ===== B Project |
- | This product was a refinement from lessons learned from the first. | + | This product was a refinement from lessons learned from the first project. This product implemented a new design where it loads all assets from xml files. So I created an xml loading class. These xmls contained information, |
- | ===== C ===== | + | ===== C Project |
- | Most of this work was refinement of the game engine from the previous | + | Most of this work was refinement of the game engine from the B project. Since that one wasn't completed when I started this project I still had to complete some of the design of the core engine. |
+ | |||
+ | ===== B2 | ||
+ | |||
+ | This was a re-implementation of the B project in java. The reasoning was due to the fact that this game needed better keyboard inputs to be able to play the game properly. Most of the code ported nicely with little or no work needed. The xml stuff needed most of the rewrite but I had to create my own 2d rendering engine. This rendering engine added an xml file for the frames of the animation. Also, I had to create a display list for managing depth of the art for rendering. For the AI on this game, I implemented a statistical based on percentage of chance as to which action will be chosen. Also, AI had a reaction to the player that would be based on a percentage of chance to succeed or fail. This part of the product took about 2 months to complete and was shipped. | ||
+ | |||
+ | ===== SI Project ===== | ||
+ | |||
+ | This worked off the java game engine, so the work load was light. I had to do some tweaks of the engine. The biggest addition to the game engine was a proper collision detection system. This created a bounding box that was used for the detection. This bounding box was defined in the xml. The rest of the work was creating the code to support the assets. This game had an AI component and it was fairly simple with only one action that was based on percentage and duration. This game only took 2 weeks and was shipped. | ||
+ | |||
+ | ===== JME | ||
+ | |||
+ | This was a port of another developer’s game. His game was developed in flash and they wanted it ported to a mobile device. The mobile device only supported Java Mobile Edition. I first ported the game to my java game engine to make sure it would work in java. Then I worked at converting the java game engine implementation over to mobile edition. This didn't require much work the most significant work was ME doesn' | ||
+ | |||
+ | ===== BG | ||
+ | |||
+ | This project was driven by another worker which his primary role is as an artist. He pushed for the creation of this product and wanted to write the code for it as well. So, while I was working on JME he would work this project. Come to find out he's not a very strong coder. I tried to help as much as I could while working the JME project. So, I created a simple based in flash for him to start working. Alas he could only create the art and none of the code was created. But since I started some of the code I decided to work from there. This product had one of the most sophisticated AI's to date for our work. This AI had several moves it could choose from and so I developed a system that would create a list of available moves and then an algorithm to determine the best move to make. This game was also the first one I created that used the mouse as an input device. The mouse presented an interesting problem. | ||
+ | |||
+ | On a final note I recreated the java game engine and it is hosted at [[wiki: | ||
- | ===== Level 2 Headline ===== | ||