FuTraPro Progress
Got some things working. Cars come out of the green triangles at regular times, and follow the signs to switch lanes, accelerate, and brake. Drag & drop also works on all of the objects.
Here's a screenshot.
Progress Update
Got Game Maker 7 installed. Its event system is miles ahead of what MMF had, though it took a couple tries to get things working the way I wanted to.
Here's what I have so far:
- Cars that can move towards the top of the screen at different speeds: 1 tile per second, 2 tiles per second, or 3 tiles per second
- Lane changers and accelerate/brake tiles that affect the cars correctly
- Car creators that create a car once per second
There isn't a UI yet for placing any of these things once in the game, so I'm laying them out in Game Maker's scene editor. All this was about 3 hours of work. Game Maker is almost frighteningly efficient.
Future Traffic Programmer, Pt. 2
This is a follow up on the earlier post about Future Traffic Programmer, which has the unfortunate acronym 'FTP'.
I need to refine my design, since there are still a couple areas that are ambiguous. Namely, how the game processes over time and how it simulates the movement of the vehicles. To get a better feel of how to design this type of puzzle game, I'm going to look at a couple games that use similar concepts.
Lemmings - Each lemming is controlled after they pop out of the hatch, instead of placing something into the level beforehand. Everything resolves down to pixel-precision - there aren't any exact solutions to any of the levels, since the lemmings move fast enough that there is some variance to where they build, dig, and so on. The goal of lemmings is much more how to deal with the terrain in clever ways, rather than directing traffic. Lemmings can move at different speeds depending on their task.
Chu Chu Rocket - This game uses a square grid where you place arrows that direct mice from their starting places to a rocket launch pad. The challenge mainly comes from directing traffic, since there are enemies that can eat the mice. Each unit moves one tile per time unit.
Star Wars Pit Droids - Colored pit droids have to be guided to their color coded exits on a hexagonal grid. You place arrows to control their movements. There are some other aspects as well, but I can't remember the specifics since it was a long time ago that I played it. Pit Droids is very much a traffic control challenge because you can't let the droids run into walls or eachother.
The Lost Mind of Dr. Brain - There is a puzzle in one of the Dr. Brain series of games where there is a robot on a square grid, and you place programming cards intofunction areas to instruct the robot to perform tasks. You have to avoid obstacles and enemies as well. There's an online version of this called Light Bot, which is not as challenging but still fun. The big challenge in these titles is to get the robot to do everything it needs to do in as few instructions as possible, and you can use nested function calls to get a lot out of a couple simple commands. The commands are issued one at a time, at a rate of one command per time unit, and each command takes one time unit to complete.
Considering these, I believe Future Traffic Controller would work best with a (mostly) strict tile/timing system for the cars, otherwise it could end up as a mess with solutions that almost work, but for a single car that clips the edge of another's bumper at some point, requiring transmitter tiles to be readjusted pixel by pixel to fix. That type of gameplay isn't very useable when you have to place tiles with a mouse.
So, each action that a car takes will take at minimum one simulation 'tick' in game. The cars can still appear to move smoothly of course, just as Chu Chu Rocket does with its mice. Different car speeds can be simulated by having a slow speed be 1 tile per tick, medium and fast being 2 and 3 tiles, respectively. Higher speeds would be possible, but that would only cause the levels to be stretched out, without increasing their complexity. Lane changes will take two ticks to complete, so that the car will actually occupy two tiles during the intervening tick. This prevents cars in adjacent lanes from both going left at the same time, which hardly happens on the road, and is incredibly unsafe to boot.
Combining lane changes with the speed of a car means that a slow car moves two tiles forward as it goes one to the side. Medium and fast cards go four and six tiles, instead.
The final complication, and there always is one, is the priority of operation of triggers that you place. I want them to be triggered before the transmitters they are hooked to are triggered, so that when two cars in adjacent lanes hit a trigger and a transmitter at the same time, the transmitter is affected by the trigger.
Similarly, triggers that operate on other triggers should fire off from the outside in - this way anything you place on the road will take all of its multitude of triggers into account before deciding whether it is activated or not. This will allow for some complex (and hopefully not confusing) chains of toggles and other triggers that hook into a bunch of transmitters, resulting in some fancy traffic patterns, and of course their resulting puzzles.
So, where do the cars come from, and where are they going? The levels will be laid out as stretches of expressway, with cars coming from either the main trunk or entering later along the road from entry ramps on the left and right. Similarly, cars will be able to leave the level from exit ramps or by continuing straight along the main trunk. Complications can be added by having the highway expand or shrink lanes, or by having sections of a lane blocked by construction. The goal here will be to get cars from wherever they start to the exit location that they desire, shown by color coding on the car and the appropriate exit.
One type of puzzle (or portion of a puzzle) that will come up a bunch is the concept of traffic weaving - given lines of traffic in two adjacent lanes, where people from one lane want in the other, and vice versa. There are two steps to solving this type of puzzle. The first and hardest step is to get the lanes lined up so that no car in one lane is directly adjacent to one in the other lane. Once that's sorted, it's a simple task to put a lane changer in each lane, coded to affect only cars that actually want to get over to the lane they aren't in. Getting the lanes properly lined up can be easy if the traffic from each comes in a regular fasion at a medium speed, since you can put a brake transmitter directly before an accelerate transmitter in order to put one lane out of phase with the other. If the traffic is uneven, you'll need to use triggers to adjust the phase of particular cars based on whether there is a car adjacent to them or not. If both lanes are irregular, this may become supremely difficult!
There are two ways to score a successful solving of a puzzle here. One is by how long it takes for all the cars to exit the level, which puts an emphasis on putting the cars at their maximum speed, where you have less time to change lanes. This represents increased economic productivity when people can get to work quicker. The other way is to score based on the number of transmitters used, since they cost money and the transportation department has a budget to keep. Some levels could even feature a limited total budget or limits on certain parts, which is a common feature of puzzle games.
With those issues sorted out all I need to do is find an engine to write this in. I've been planning on looking at Gamer Maker 7, since it has a big community and a lot of successful releases, though I could probably make it in MultiMedia Fusion if needed, since the graphical requirements of this design aren't very restrictive. The tricky parts are probably going to be writing the trigger code so that it affects things in the right order, and creating a good drag/drop interface for placing all of the transmitters.
I need to put some pictures up in this piece, this is a lot of plain text to read.
Future Traffic Programmer
Here's an idea for a game I've been working on for a while now.
It's the distant future of highway traffic control. Your job as a traffic programmer is to make sure that all of the autodriver cars make it to their correct destinations without crashing. Orders are sent to cars from transmitters placed beneath the pavement in individual lanes, and the transmitters can query a car to get its current speed and destination.
Your task is to design the placement of different types of transmitters so that all of the cars can make it through safely, and as quickly, as possible.
Here are the basic commands at your disposal to affect how the cars travel:
- Brake
- Accelerate
- Lane change left
- Lane change right
- Take left fork
- Take right fork
Additionally, each transmitter can be fitted with a conditional to make it only work for certain cars on the road.
- Speed (Fast, Medium, Slow)
- Destination (Any number of futuristic destinations relevant to the area)
There is also a special type of transmitter that sends signals to other transmitters, instead of to cars. They trigger whenever a car runs over them, but can be set up with a conditional so that they only trigger when certain cars go by. Whenever it triggers, it can either turn off, turn on, or toggle another transmitter.
The trigger transmitter can be used in combination with a lane change transmitter to create a "safe merge" - set up the trigger in the destination lane, so that whenever it has a car over it, the lane change transmitter shuts off. This will prevent cars from accidentally merging into other cars.
Another thing you can do with a trigger is to split one lane into several. Place a trigger in front of a lane changer in the same lane, with the trigger set to toggle the lane changer each time a car hits it. This way every other car will change lanes. It could come in handy!
One final wrinkle is that certain types of vehicles supercede the automated highway system entirely - you won't be able to issue commands to them, but they will still set off triggers so that the automated cars will be able to avoid them if you are a clever programmer. These autonomous vehicles will usually follow a set path or even remain in a single lane at a constant speed, so they will generally be easy to plan around.
Have fun at your new job as a future traffic programmer!
Game Explorer
In chess, there are huge depositories of games past, which can be explored using powerful tool such as chess.com's Game Explorer. Using this web program you can play moves and see what the winning percentages are for each move that comes after it. There are over two million games in the database, all from master-level players. Many of the games in this database follow what are known as main lines - over half of those games have e4 as the starting move. For those unfamiliar with chess notation, this is moving the king's pawn two squares forward.
What use is a chess database? For one, it makes it easy to see what your future chances may be, and how popular each line of reasoning is. Because of this, most chess-playing engines use what's known as an opening books, a type of chess database, to improve their play during the beginning part of the game. Likewise, people playing correspondence chess often use chess databases to avoid making blunders, and to look ahead to see what their opponent (who also is using a database) might play.
If you follow through a couple of moves it's easy to find an opening sequence that has rarely been been played before at the master level - these are known as 'novelties' or 'theoretical novelties' in chess. Many of these novelties are weak moves, but there are countless undiscovered complexities in chess, and some chess players enjoy exploring this new territory. If you play one of these novelties, computer and human player alike will have to throw away their chess database as well - since there is no more data to be drawn upon!
The corresponding idea in game design is to use a sort of novelty, innovation, or new technology to differentiate one game from another. It would be interesting to be able to locate novelties in game design, in a similar way to how they are discovered in chess. Let's take a look at a hypothetical design database which allows people to explore different types of designs and see what other projects made similar decisions, if anyone had actually made that design decision before.
Instead of chess moves, this design database has a sequence of design decisions, starting with the most important, overarching themes of a project, with following decisions refining and polishing the overall design. A design sequence for chess could be like this, in order of importance to the game:
- Abstract Strategy Game
- Two Players
- Special 'King' piece is put in check to win the game
- Pieces capture the opponent's pieces by moving into them
- Each piece has a different type of movement (described here)
- Some special moves can be made (Pawns moving 2 squares, castling, en passant, pawn promotion)
- Board is 8x8
- Pieces start out arranged in a particular manner
The order is important, since you can make changes more easily to the later items without greatly affecting how chess feels and plays. An example of this kind of change was a variant developed by Bobby Fischer some time ago in order to combat the rote memorization of opening systems in chess. The variant is known as Chess960, where the arrangement of the back rank of pieces is randomized (with some restrictions) before the game. The result is a game which plays almost exactly like chess, but places more emphasis on creativity and talent, rather than memorization and preparation.
On the other hand, you could hardly alter the earlier elements without changing the feel of the game, though depending on how they are changed it could still be considered a chess variant. Shogi has differences in 4, 5, 6, and 8, though it's still recognizibly a type of chess - it's also called Japanese chess.
Let's take a look at another decision sequence:
- First Person Shooter
- One player or two players cooperatively
- Fighting against aliens
- Player has health and shields, the shields recharge
- Vehicles are used in combat by one or more players at a time
- Players can hold only two sets of weapons at a time
- Players can use grenades as long as their weapon only takes up one hand
- Special items can be found which are used to enhance the player or detract from enemies
It should be pretty apparant that this game is Halo, though you wouldn't be able to tell which one unless someone expanded the sequence with more and more finer points. Taking the assumptions that come along with being a FPS game (running, jumping, ducking, aiming, shooting) you can get a pretty good idea what is going on in the game and how the combat plays out. Compare it to Gears of War, which has a similar design, though it is an over-the-shoulder camera, and I would probably replace the vehical combat with an item about the cover system, since that is what's important about the combat. There are other small changes as well, regarding the weapons held, grenades, and special items - though these are farther down the list, and ultimately less important than the earlier ones.
Another interesting comparison would be the differences between checkers and chess. I'll leave that as an exercise to the reader (because I am a jerk).
In conclusion, I think it'd be neat to have a database of games listed in this design sequence format, so you can pick one or two early (large) decisions and see what kind of games show up in the filtered list, including stats such as their critical and financial success, detractions, and links to similar games that differ in a bigger decision rather than a smaller one.
TOB – First Prototype
Here's some stuff I gotta do.
Visual Studio set upSprite loadingSprite animation- Animation description format (txt)
- Animation loading
- Level displaying (tiles)
- Tile description format (txt)
- Level description format (txt)
- Level loading
- Level editor (basic)
- Controller movement
- Collide with level tiles
- Run
- Jump
The tile description format will have a list of the tiles and their component .png files, which will then be referenced in the level description format so that it can be enumerated simply.
The format might look like so (tiles with multiple frames are for a fancy-tile format that I made up):
TileName Frames "path.png"
BrickTiles 9 "tiles/bricks-9-3-3.png"
SmallPlant 1 "tiles/smallplant.png"
The level might look like this:
Tiles "tiles/tiles.txt"
. Background
b BrickTiles
p SmallPlant
EndTiles
Level 30 20
...............
....p.....p...
...bbbbbbb
EndLevel
etc
The animation format will probably look something like this:
Idle frames 0 0 loop 0 // Loops infinite times
Walk frames 10 19 loop 0 // Loops infinite times
Stun frames 20 24 loop 1 // Runs once then stops
Stand frames 25 29 loop 1 // Runs once then stops
The level editor will also need a sort of collision hull editor and way to edit the non-architecture layers, including gameplay cues and monster drops, and so on.
Delays
I found a copy of Visual Studio 2003 on my desktop, which might help me to actually get some work done. However, I should probably buy the damned program already and install it on my laptop, to facilitate development. Actual motivation is out the window!
At this rate I might have something programmed by 2009.
Design Documents
I spent some time today working on a design document, the fruits of which you can see here: Grocery Panic.doc
Excerpt:
The X
Don’t put the cans on top of the eggs.
Summary
Foodstuffs are falling into a paper bag from an ever-rotating conveyor belt of edible goods. Your job is to pack the bag without destroying anything. Certain items are fragile, and must be placed very carefully. The less empty space left, the better. Each bag will be more difficult to pack than the last!
Conveyor Belt
The conveyor belt carries items before they are dropped into the pit. The conveyor belt starts off the right edge of the screen and ends at the top-center of the playing field.
At regular intervals determined by the conveyor belt speed, new items are added to the conveyor belt from the right side of the screen. They should move along the conveyor belt until they reach the end, where they stack up awaiting use by the player. Stacked items occasionally jiggle, to represent how agitated they are.
Whenever an item is placed, the next one is immediately picked off of the conveyor belt and placed at the very top-center top of the playing field, even if that item was not already at the end of the conveyor belt.
When the conveyor belt is filled with stacked items, they will blink red, and if another item is added, they all fall off into the pit, which will cause many things to be crushed by accidental poor placement. This may cost a player the game.
Grocery Panic Development, Pt. 1
Panic!
Just starting work on a recent idea: Don't put the cans on top of the bread. That's the gameplay behind this simple tetris-clone where you pack groceries into a paper bag. Each item has a weight, strength, and shape (flavor? price?). If you put an item on another item, if the weight is greater than the other item's strength, the weak item is squished.
Examples:
Watermelon - 4 Strength, 4 Weight
Can O' Soup - 4 Strength, 3 Weight
Cereal - 3 Strength, 2 Weight
Eggs - 2 Strength, 2 Weight
Banana - (Tastes delicious and has an odd shape) 2 Strength, 2 Weight
Bread - 1 Strength, 1 Weight
You can put a can on a cereal box, and a cereal box on a can. You can put a box on some eggs, but not on bread. If you put a watermelon on a loaf of bread you are a fool. The groceries will come down off of a conveyor belt, and you move and rotate them in the style of Tetris. Once the bag is full, you get points for each item in the bag, demerits for holes in the middle, and NO TIPS whatsoever. This is a union store, buddy.
That's it for now, here are some pieces of art that I didn't crop:
