Pre-Order the Game!

Desura Digital Distribution

Monday, September 26, 2011

Colors and Teams

I know it've been a while since last update related to programming stuff. Things has been busy the past couple of weeks, and will be busy for the next few weeks as well. But the good news is that I'm nearly done with player setup screen! The only remaining thing to do is to fix the color selection screen (it's not drawing things properly), and add an UI component for setting the AI difficulty level.

Here's the latest version of player setup screen! As usual, feedbacks are welcome.

Wednesday, September 21, 2011

Some design changes

I'm still working on the players setup screen. While working on this screen, I thought about several things, and those led to some other things, and so forth. First thing that I was thinking about is "What if different empires can be the same color, meaning they're allied for the whole game?" Then I realized that it'd be confusing to the player if different empires share the same color (which systems are yours, and which are theirs?), but the idea of "permanent allies" struck a chord inside me. So I decided that it will be a feature of the game. In "Game Setup" screen, you will see a checkbox for "Permanent Alliances" which means you can't ally or unally during the game, you stay allied with your teammates for the whole game, and win when all non-allies are eliminated. In Player Setup, you pick the team number (ranging from 1 to # of players) for each empire. Regardless if permanent is on or not, if you're on the same team with other empires at the start of the game, you're automatically allied with them. If permanent isn't on, you can break up the alliance later.

This got me to thinking about the diplomacy, and I realized what I have so far is pretty much pathetic. It's just a very basic system, and I felt that there's much to be desired. So I thought about how the "Permanent Alliances" will impact the game, and felt that there should be more options. So instead of a bunch of generic actions that you can do, you click on an empire, and it brings up a window with two lists. They will consist of things that you can offer, and things that the other empire can offer. This will include planets, money, treaties, technologies, declaration of war, and... Ships!

Yes, you will be able to trade your ships for something other. I don't think this particular feature is offered in any other 4X games. But often when I play with my brother, sometimes he'll get in a sticky situation, and I want to help him out, but that means at least one of my friends (computer players) will get mad at me for helping him out. So I have to either sit back, or help and make my AI friends mad. So being able to trade (or gift/demand) ships will handle this situation. USA sells its F-Series fighters to other countries, why can't we do that in a 4x game? If the ships contains technologies that you haven't researched yet, you have a decision: scrap the ships in hopes of recovering those technologies (not 100% success rate), or keep them and use them to do battles for you.

However, when you're in diplomacy screen, you can't see what the other empire have to offer in terms of ships unless you're allied with them. This is to prevent players from gauging the other empire's strength.

Now, while thinking about this cool idea, I realized one problem. How do the game know which ships you want to give, and to keep? So I pondered on this for a bit, and I think I've come up with a good compromise. You will have ships on "Reserve", and "Active" ships. All built ships are automatically put into reserve list (with the added bonus of low maintenance compared to active ships). To activate ships, you go to a system that have at least one of planets owned by you, and click on "Deploy Ships". It will bring up a list of ships in reserve that you can deploy. It will then deploy ships to that system. This will be kinda similar to how MoO 3 works, but there's no task forces, and you can't disband the fleets anywhere. You deploy as many ships as you want. To put ships back into reserve, you will need to put them adjacent to a system that you own, then click on "Put into Reserve"

When an empire trades you ships, those ships are put into your reserve list.

With this system, the ships that I trade with other empires will be direct from the reserve list, so it don't mess up my plans with active ships. I don't like the idea of Active/Reserve status, but I think it's the best solution, because I really want to be able to gift/trade ships with other empires.

This may seem like a huge change, but it's a minor change in core code. Most of the changes will be with the UI screens. When those are implemented, this will be the final diplomacy structure. My plan is to re-do a screen, replacing the artwork with the new ones from the artist, and fully flesh out that screen (all the missing features, etc), then move to next screen. That's why all of this is happening, because I want the "Player Setup" screen to be feature complete and final :)

Friday, September 16, 2011

Player Setup almost done

I started work on Player Setup today (Race Selection was a different screen), and I hoped to have it done by tonight, but I need to go to bed. It's past midnight here. The good news is that this will be the final setup screen for players for the game, including artwork. Notice no more blue background? :) Once this screen is done, I won't be coming back to it except to fix bugs. All the UI elements in the screenshot are fully working.

Personally, I think it's a lot better and a lot more clearer and organized than the old screen!



Good night all!

Tuesday, September 13, 2011

New Race Selection and UI Element

Whew, pulled off a marathon of programming. This new Race Selection will pop up when you click on "Race" button in new game setup:



Note the description? That's a new UI element that I just added that allows word wrapping and scrolling. It was a bit tricky to figure out, but I managed to accomplish it! There's a bug where you can scroll down past the end of text, I will look into that later. But for now, it all works! I just need to add descriptions for other races.

All of this was done today, now I'm going to bed! :)

Saturday, September 10, 2011

Ship Design update

Since I've overhauled the technology system, I have to redo the other screens. I started with ship design, and first thing I did was to create a window class where you can drag it around. Then I started on a screen for picking equipment. At this time, the artist gave me a new batch of artwork which includes some background border, buttons, etc. So I've been busy replacing some artwork, and changing how buttons work internally to support the new artwork.

Here's a preview of what I've accomplished so far. Notice the new weapon type "Shockwave"? It will be mainly useful for kamikaze-type ships that barge in and blow up stuff, and for anti-missile purposes.

On the left column of equipment selection is the weapon type. Middle is the type of mount (large, small, point defense, dual cannon, etc). On right is list of modifiers for that equipment type, so if you have shield piercing for beam weapons, it's available for all beam weapons, but it also adds space and cost based on the equipment space/cost.

This three columns will be how you'll create different weapons and equipment like computers and engines. I need to add information display under the three columns to show space usage, cost, and equipment description, then it'll be done.

Here's the screenshot!