Kamis, 03 Januari 2013

Terrain Generation

Thumbnail
I've started using Perlin noise instead of a height map to generate the terrain to have infinite generation and be able to generate caves and caverns as well as the surface of the terrain. The results have been encouraging but there's still a lot to be done to ensure that it creates a realistic surface with mountains and plains and other...
templates-office.com Terrain Generation, Voxel Dwarf Game
Rabu, 02 Januari 2013

Kingdom of Dwarves

Thumbnail
Working on a voxel based game in Unity where you build a kingdom with your group of dwarves. I have rendering of voxels in chunks of 16x16x16 cubes that can be updated independently and I'm working on a texture atlas based on block values and an alternative where blocks are just colored rather than textured for better performance on low...
templates-office.com Voxel Dwarf Game
Minggu, 30 Desember 2012

Happy New Year and all the Best for 2013

Thumbnail
Another year comes to a close and a lot has happened on this blog and off-line. It's been a good year in some respects, an interesting one in others and definitely one I won't forget. I didn't write as much as I wanted and I am not sure I will make up for in the new year - but I will try. I am still toying with the idea of putting my...
templates-office.com
Sabtu, 15 Desember 2012

Digital Audio Signal Analysis

Thumbnail
This latest update isn't about the stealth game but about an assignment that's nearing completion, one part of it is a music based game like Guitar Hero or RockBand, simple music, hit the keys in time with the notes on the screen. Originally we planned to write tedious code with the timing for each note in each...
templates-office.com Audio
Minggu, 09 Desember 2012

Aligning objects

Thumbnail
A simple but very helpful tool that is often overlooked is the 'Align and Distribute'. It's the answer to a question I have been asked a few time 'How do you place your objects precisely in line?'.The tool can do a lot more than that by aligning not only objects but groups of objects. In order to 'kill two birds with one stone' I am...
templates-office.com

Alive and snowed under...

Thumbnail
It's been a while and I haven't posted for a lot longer than I realized. I missed a major spike in traffic when a news site picked up the helicopter tutorial and barely kept up with the comments due to health problems, too much work, too much fun, too much happening in the real life and I am sure I can find another lot of excuses why I haven't...
templates-office.com
Sabtu, 01 Desember 2012

Path following

Thumbnail
Guards can now be called on to find, then follow paths. Also the I took away the streamlining of the path, it was overkill to do that while drawing the path and it works better to do it while the guard walks, that way I can use his position to check if he can see any upcoming nodes as he walks and if he does, jump to those instead of any...
templates-office.com Pathfinding, Stealth
Kamis, 29 November 2012

Working A* pathfinding

Thumbnail
The A* pathfinding system is now functional and very efficient, guards quickly generate a route to the player using the nodes placed on the map and then optimize the route deleting any superfluous nodes on the path. I ended up not using the arrays built into the nodes of closest other nodes because I would have to use that array...
templates-office.com Pathfinding, Stealth
Jumat, 16 November 2012

AI pathfinding nodes

Thumbnail
I started writing an A* pathfinding system with branching nodes, each node is linked to it's closest eight nodes for more efficient path plotting. I wrote a script that would cycle through them and link them to their eight closest nodes who's paths don't intersect walls or obstacles. Above is the turn out when I got it right, below...
templates-office.com Pathfinding, Stealth

Light level

Thumbnail
Light level is the first thing I've completed, the concept for measuring light seemed simple but it was so essential to the gameplay I decided to do it first to make sure it could be done efficiently and accurately.The method is quite simple, since we're already using light objects in unity to create light we can add extra code...
templates-office.com Stealth