Categories
- blog (13)
- game development (61)
- Games (9)
- games related (9)
- Cheat (2)
- Komplettlösung (d) (3)
- Walkthrough (3)
- MS Office (7)
- PHP (3)
- Tutorial (8)
- Intermediate (1)
- Tutorial Series (15)
- Grid Based Games (8)
- Terrain Modification (7)
- Uncategorized (1)
Tag Archives: grid
Alright, giving the landscape some natural feeling by applying colors to the tiles. This simply fits into the dynamic drawing of tiles by using a fill. The shading here will be done with static colors instead of shadow calculation.
Continue reading
Posted in as3, flash, game development, grids, mochiads, Terrain Modification, Tutorial
Tagged grid, isometric landscape, isometric map, populous, shading, sim city
5 Comments
This post enhances the previous post by the ability of actually placing obstacles which somewhen may become towers.
Continue reading
Posted in Grid Based Games, grids, mochiads
Tagged adjacent, desktop tower defence, grid, node, obstacle, placing, tower, tower defence, Tutorial
1 Comment
I know this may look like a call to clone. But the intention of this post is more like look and learn. Once you can do the same, make it better. We’ll have a look at Desktop Tower Defence and try to understand the basic methods of that game.
This post will cover the creation of the square grid in different colors and a method to obtain the actual position to build a tower.
Continue reading
Posted in as3, flash, Grid Based Games, grids, mochiads
Tagged desktop tower defence, grid, mochiads, node, tower defence, Tutorial
3 Comments
In this part the adjacent cells of the acual node are called. This can get handy if we want to implement some kind of pathfinding algorithm. The base for this code is part 2.2. See part 1 for the creation of the basic grid.
Continue reading
Posted in as3, flash, game development, Grid Based Games, grids, mochiads
Tagged adjacent, grid, node, Tutorial
6 Comments
This part deals with similar interaction as part 2.1 without the masses of EventListeners. See part 1 for the creation of the basic grid.
Continue reading
Posted in as3, flash, game development, Grid Based Games, grids, mochiads
Tagged grid, interaction, node, Tutorial
Comments Off on Grid based games – Part 2.2: The basic grid with interaction alternative
Now it’s time to add some interaction to the grid made in part 1. For that purpose simple MouseEvents for movement and click will be sufficient. As indication we will change the color of the relevant tile.
Continue reading
Posted in as3, flash, game development, Grid Based Games, grids, mochiads
Tagged grid, interaction, node, Tutorial
Comments Off on Grid based games – Part 2.1: The basic grid with interaction
There are a lot of games based on different kinds of grids: Real Time Strategy (RTS) or round based Role Play Games (RPG) and Tower Defence (TD) games as well as Top-Down-Shooters and vertical scrolling Jump&Runs. One could use grids for tactical board games as well.
In the grid we are going to create, each tile consists of two parts, an Object() for the node and a MovieClip() for the graphic. The presented code is timeline and can thus be copied into the actions panel. This way it can be used for practicing purposes fast. For a game I would rather create and sort the code in classes.
Continue reading