April 2013 challenge: “nemesis”
The Sea of Good and Bad - TSoG&B: Voice acting
Posted by cyhawk on 2013/05/01 03:08
Most of the recording slipped past the deadline and was only added in version 1.1. Also it was all one take with lots of laughing at each other. It is tons of fun, and I think the result adds to the game no matter how ridiculous it turns out. I recommend you give it a try for next PyWeek if you haven't yet!
It would have been even better if everyone on the team would have voiced one character, but we couldn't get it organized in time. Well, there is something left for the future!
Last Will of the Emtar - Last Will of the Emtar - mechanics postmortem
Posted by Cosmologicon on 2013/04/26 05:03
It's a tile puzzle tower defense game. Tiles are active or inactive based on their orientation relative to adjacent tiles: all the contacts must touch contacts of the opposing color. This is where "nemesis" came in. Defensive towers only operate when their tile is active.
Quite early in the development I realized this is way harder to play than I expected. First of all, if you change one tile you affect all four tiles around it, like a huge Rubik's cube. Also, that sea of red and blue is disorienting. Just look at it. If they weren't highlighted, how quickly could you pick out the active tiles? I considered changing the rules so that you had to match colors rather than mismatch them. This is far more common in puzzle games, and it was slightly easier. However, since this was my main link to the theme, I decided to stick with the mismatching mechanic, come what may.
(I did, however, get a story out of it. The disorientation of mismatched colors became the central plot point. If you like stories like this, I think the payoff at the end of the game is well worth it. Among my games, this has one of my favorite stories.)
And that's only half the mechanics. Then you have the tower defense elements on top of it all. I originally conceived TD mechanics that made extensive use of the tile layout. eg, traps that would swap the tile the enemy was on with a farther back tile. Before I even implemented them, though, I knew it would greatly exacerbate the playability nightmare. So I quickly replaced those devices with more traditional guns and traps.
Still, in the middle of a wave, it was nearly impossible to recover if one of your towers became disabled. There was no point doing anything during a wave except sit back and hope your defenses hold. Obviously not that fun. I finally made several large changes to make it possible to recover from a few disabled towers.
- Added a device that changes the colors of any tile so as to activate it in one click.
- Enemies originally attacked by randomly changing the colors of a tile. I changed it so that they rotate the tile left or right (much easier to undo).
- Enemies used to remove any tower on tiles they attacked, now they leave the tower but disable it.
- Enemies used to attack (and rotate) tiles adjacent to towers. This would disable the tower without making it immediately clear which tile was attacked. Now enemies only attack towers directly.
In retrospect, I probably could have guessed early on that this would have happened. I think in the future I'll be more critical of complex game ideas. Thanks for reading!
The Sea of Good and Bad - TSoG&B: Finish line
Posted by cyhawk on 2013/04/26 01:09
All the while everyone else was working on design, coding and music at such pace that I could not follow. Would there be a game at the end in which these characters get to be featured? Or will they just float over a black background in the company of a few white squares? (This was the general design for a long time.
I was very relieved and impressed in the end, as over the course of Saturday the game turned playable and even fun. This is a really awesome thing about working in a big team that I had missed in previous PyWeeks. Code magically appearing even when I had nothing to do with it :). I hope my teammates will post some diary entries about this part of the development, since I wasn't able to follow along.
I also made rough 3D ships and stuff in Sculptris. I was aching to try it for PyWeek, since it's such a fast and simple modeling tool and I was not let down. The good thing is that even if you're not great at modeling, the end result will just look like a child's play-doh sculpture. (As seen above :).) It exports to OBJ which is easy enough to load.
The Sea of Good and Bad - TSoG&B: First days
Posted by cyhawk on 2013/04/24 00:42
The downside of the big team was that I could not follow progress closely. Since I was working on other designs in the pre-production phase I barely understood what was the game we were making about. I thought I'd let those who knew more work on the game logic. The pre-production design was rather vague about the setting (the white wizard of Life battling the black wizard of Death) so I went to spice it up.
I wrote a goofy script and sketched portraits for the characters. Game dialogs are not an easy genre. They need to be so short as to not bore the player that every sentence has to serve multiple purposes. You have to expand the setting, advance the story, explain the game mechanic and build the character with the same dozen words that fit in the constrained space at the bottom of the screen!
So I probably failed at all of those goals :). But it was a good effort. Players with a keen sense for detective stories may be able to work out the plot. Who sent the Kraken? Who was Tom working for? What the hell is Aunt Menace going on about?
...As Was Foretold - Update
Posted by Rectifier on 2013/04/23 19:54
Windows users are encouraged to use the py2exe version for simplicity.
Mac or Linux users should use https://dl.dropboxusercontent.com/u/33587464/As_Was_Foretold_Linux.zip instead; it has a trivial patch for some graphics corruption.
For Science! - Postmortem: For Science!
Posted by reidrac on 2013/04/23 16:50
- You must match 3 tiles or more to obtain resources: money and the assets to use against your enemy (they cost money).
- Assets let you attack and defend (repairing your shield).
- It is turn based (just in case the multi-player part happened, remember?): you can match-3 or use assets, so you must choose what is best for you each turn.
I did it in the previous PyWeek with PyGame, and did it again this time with Cocos2d. Yes, Cocos2d is amazing; but it's hard to use and too easy evolve your code into something unmanageable. Besides that feeling of "I don't know what I'm doing" doesn't help when you are programming against the clock!
Avidus: Those Left Behind - Bugs.
Posted by flyingfox on 2013/04/23 05:41
Also, make sure you have numpy (http://sourceforge.net/projects/numpy/files/NumPy/1.7.1/) and scipy (http://sourceforge.net/projects/scipy/files/scipy/0.12.0/) installed.
We now return you to your regularly scheduled judging.
PS. Wow, there are some nice games this year. Put's mine to shame.
The Sea of Good and Bad - TSoG&B: Before PyWeek
Posted by cyhawk on 2013/04/23 03:30
I basically mentioned PyWeek to everyone I bumped into in the weeks before the contest and got 10 or so people in the team. It was crazy. We came up with 2-3 detailed ideas for each theme candidate and it was painful shooting them down. Here are my dead soldiers if you're interested:
- Third-person shooter (kryptonite)
- Selfless sidekick (sidekick)
- Simultaneous control (nemesis)
- Capture Them All (secret identity)
In the end we had to settle on one idea per theme candidate. This would surely have escalated to a knife-fight had we not worked through Google+ hangouts. (How do other teams do this? I wonder if there is a peaceful way of going about it...)
We then added even more detail to the winners, down to screen mocks and milestones! (See the TPS and the secret identity game above.) We thought we were ready for PyWeek! But were we...? Find out in our next episode! :)
Nemesis - one drawing
Posted by circusblatta on 2013/04/23 02:31
Nemesis - things left unfinished
Posted by ilseppia on 2013/04/22 08:53
This time there were only two of us participating the competition.
This entailed some things left unfinished.
Anyway the game is playable and at least winnable.
Let me add some notes here for those who want to play the whole the adventure:
- Action key is Left CTRL. You can customize keys by editing pw16_variable.py.
- You can forget about mouse by using 1-8 keys to select objects and SPACE to activate them.
- Collisions are glitchy. If looks like you can't move on a free cell, just try to go back ad forward again, or try to shift you a little on your side before trying again. It may also happen you get stuck in a cell... you can fly over objects by pressing F12 (debug mode).
- "sword" combo is not working fine, I suggest to just avoid enemies until you get some long range fire.
- Enemies positions are misleading. It looks like they move towards to you, but they are not... wrong collision logic still checks their original cell position, so they will hurt you/can be killed only in their original cell.
- "shield", "immune" and "invisible" combo are not working,. Forget about them.
- When getting into a dark room you need to have the torch aready active. So just go back and enter again in the dark room with torch.
- There are 10 Athena's Owl to free in the map
- If you get stuck in front of something even if you have the correct combo active, remember to press the action key.
- Trees images were supposed to be 2 cell tall.
- Game automatically saves at every object collected. If you want to reset the game just delete the file in save folder.
It would be nicer to finish/fix everything in time.
Thanks for playing.