Browsing '2013': Students starting in 2013

Level Up!

Keeping with the theme I’ve set these past two weeks I’m going to keep talking about the different artifacts I’ve created related to the main character in the game me and my group is making. Last week I talked about how I made the first sprite of the main character, the level one sprite which you start out as. This week I’ll talk about the level two sprite, how I made it and what challenges I faced while working on […]

/ Comments Off on Level Up!
Program: Graphics

Level Up!

Keeping with the theme I’ve set these past two weeks I’m going to keep talking about the different artifacts I’ve created related to the main character in the game me and my group is making. Last week I talked about how I made the first sprite of the main character, the level one sprite which you start out as. This week I’ll talk about the level two sprite, how I made it and what challenges I faced while working on […]

/ Comments Off on Level Up!
Program: Graphics

Started with coding

So last week I started on the coding process as I completed the documentation part. The task I started with next was a score manager that would keep track of the points, and then being saved to a file; in this case a text file. Every time the program is run 100 points are added to the text file. This means that the score is saved in the text file and always being kept there until the next time the […]

/ Comments Off on Started with coding
Program: Programming

Started with coding

So last week I started on the coding process as I completed the documentation part. The task I started with next was a score manager that would keep track of the points, and then being saved to a file; in this case a text file. Every time the program is run 100 points are added to the text file. This means that the score is saved in the text file and always being kept there until the next time the […]

/ Comments Off on Started with coding
Program: Programming

Making a Game Part 3 – Shooting

So, here we are again.
This week I chose to try implementing animations and shooting, both of which being pretty big additions to a game.
However, this post will only be about the shooting, leaving the animations for another day.
First thoughts about shooting: bullets need to be their own object and only spawned/despawned when actually in use, so as to not cause unnecessary performance-drops.
The bullets also need to be associated with the player, the enemies and the walls, so an efficient way […]

/ Comments Off on Making a Game Part 3 – Shooting
Program: Programming

Making a Game Part 3 – Shooting

So, here we are again.
This week I chose to try implementing animations and shooting, both of which being pretty big additions to a game.
However, this post will only be about the shooting, leaving the animations for another day.
First thoughts about shooting: bullets need to be their own object and only spawned/despawned when actually in use, so as to not cause unnecessary performance-drops.
The bullets also need to be associated with the player, the enemies and the walls, so an efficient way […]

/ Comments Off on Making a Game Part 3 – Shooting
Program: Programming

So much confusion

So this week I have been working on the UI. In detail it is the parent meter, parent circles, arrows and indicators. Now I will tell you what things do and how it works. So inside the parent meter you have circles in different colors, they represent parents that are on their way to pick up their children. To know whose child is whose we will have arrows pointing at the child with the same color as the circle, that […]

/ Comments Off on So much confusion
Program: Programming

So much confusion

So this week I have been working on the UI. In detail it is the parent meter, parent circles, arrows and indicators. Now I will tell you what things do and how it works. So inside the parent meter you have circles in different colors, they represent parents that are on their way to pick up their children. To know whose child is whose we will have arrows pointing at the child with the same color as the circle, that […]

/ Comments Off on So much confusion
Program: Programming

So much confusion

So this week I have been working on the UI. In detail it is the parent meter, parent circles, arrows and indicators. Now I will tell you what things do and how it works. So inside the parent meter you have circles in different colors, they represent parents that are on their way to pick up their children. To know whose child is whose we will have arrows pointing at the child with the same color as the circle, that […]

/ Comments Off on So much confusion
Program: Programming

So much confusion

So this week I have been working on the UI. In detail it is the parent meter, parent circles, arrows and indicators. Now I will tell you what things do and how it works. So inside the parent meter you have circles in different colors, they represent parents that are on their way to pick up their children. To know whose child is whose we will have arrows pointing at the child with the same color as the circle, that […]

/ Comments Off on So much confusion
Program: Programming

Enemy Collision

Jag har denna vecka suttit och pysslat mestadels med Barn vs Barn Kollision. Från början tänkte jag att jag kanske skulle kunna använda samma kollisionsfunktion som jag använde till platformern. Detta visade sig vara mycket problematiskt eftersom programmet crashade när jag försökte fixa så att ungarna hade en kollider vilket gjorde det hela en aning problematiskt. När jag kom på att det var för mycket jobb för att fixa bestämde jag mig istället för att skriva en ny, egen funktion […]

/ Comments Off on Enemy Collision
Program: Programming

Enemy Collision

Jag har denna vecka suttit och pysslat mestadels med Barn vs Barn Kollision. Från början tänkte jag att jag kanske skulle kunna använda samma kollisionsfunktion som jag använde till platformern. Detta visade sig vara mycket problematiskt eftersom programmet crashade när jag försökte fixa så att ungarna hade en kollider vilket gjorde det hela en aning problematiskt. När jag kom på att det var för mycket jobb för att fixa bestämde jag mig istället för att skriva en ny, egen funktion […]

/ Comments Off on Enemy Collision
Program: Programming

Third Artifact: Pathfinding and Grid building

This week I will talk a bit about our pathfinding. (Warning: Confusing)

There are a couple of different pathfinding algorithms out there, on the internet. There are Breath-first, Best-first, Dijkstra, A*(A-star), etc. Almost everyone, on different forums, suggest A* as pathfinding algorithm for most games. It is reasonable fast in most instances, even though some of the others were quicker in some scenarios.
A*, like most other algorithms, needs a tile based system to search through.
Each Tile, or Cell, is given […]

/ Comments Off on Third Artifact: Pathfinding and Grid building
Program: Programming

Third Artifact: Pathfinding and Grid building

This week I will talk a bit about our pathfinding. (Warning: Confusing)

There are a couple of different pathfinding algorithms out there, on the internet. There are Breath-first, Best-first, Dijkstra, A*(A-star), etc. Almost everyone, on different forums, suggest A* as pathfinding algorithm for most games. It is reasonable fast in most instances, even though some of the others were quicker in some scenarios.
A*, like most other algorithms, needs a tile based system to search through.
Each Tile, or Cell, is given […]

/ Comments Off on Third Artifact: Pathfinding and Grid building
Program: Programming

My first font!

Hello readers, today I will talk about fonts and one I created. This is the first font I’ve ever done and I will walk you through my process. I started with researching about fonts and how make them. I started out in photoshop, created a grid and started drawing at low resolution. The reason I chose low resolution is because of the game’s art style. The game is supposed to be very pixelated and low resolution so this font was […]

/ Comments Off on My first font!
Program: Graphics

My first font!

Hello readers, today I will talk about fonts and one I created. This is the first font I’ve ever done and I will walk you through my process. I started with researching about fonts and how make them. I started out in photoshop, created a grid and started drawing at low resolution. The reason I chose low resolution is because of the game’s art style. The game is supposed to be very pixelated and low resolution so this font was […]

/ Comments Off on My first font!
Program: Graphics

Artifact of the week, AI.

Hello dear class mate(s).
This week I have been working with some simpler kind of AI. As always we have been using Box2D mostly for walls but that isn’t anything that I plan on rambling on every post about how it works, just so you know where the b2vec is coming from. 
Before  the feature freeze we decided that we probably should cut down on the number of enemies. We had four of them planned at that point. It is 3 and […]

/ Comments Off on Artifact of the week, AI.
Program: Programming

Artifact of the week, AI.

Hello dear class mate(s).
This week I have been working with some simpler kind of AI. As always we have been using Box2D mostly for walls but that isn’t anything that I plan on rambling on every post about how it works, just so you know where the b2vec is coming from. 
Before  the feature freeze we decided that we probably should cut down on the number of enemies. We had four of them planned at that point. It is 3 and […]

/ Comments Off on Artifact of the week, AI.
Program: Programming

Suit Em’ Up – Buggers

Hello again!
 
This week I have been working on our melee enemy “the Bugger”. He is a flying mad bug who when he sees you will do anything to head-butt you. His A.I is pretty smart as he tries to see where you’re heading and charges towards that point to cut you off and smash you into little robot pieces which makes him a though opponent.

The main thing I have done this week is doing the moving animation for Buggers in […]

/ Comments Off on Suit Em’ Up – Buggers
Program: Graphics

Suit Em’ Up – Buggers

Hello again!
 
This week I have been working on our melee enemy “the Bugger”. He is a flying mad bug who when he sees you will do anything to head-butt you. His A.I is pretty smart as he tries to see where you’re heading and charges towards that point to cut you off and smash you into little robot pieces which makes him a though opponent.

The main thing I have done this week is doing the moving animation for Buggers in […]

/ Comments Off on Suit Em’ Up – Buggers
Program: Graphics

Suit Em’ Up – Buggers

Hello again!
 
This week I have been working on our melee enemy “the Bugger”. He is a flying mad bug who when he sees you will do anything to head-butt you. His A.I is pretty smart as he tries to see where you’re heading and charges towards that point to cut you off and smash you into little robot pieces which makes him a though opponent.

The main thing I have done this week is doing the moving animation for Buggers in […]

/ Comments Off on Suit Em’ Up – Buggers
Program: Graphics

Suit Em’ Up – Buggers

Hello again!
 
This week I have been working on our melee enemy “the Bugger”. He is a flying mad bug who when he sees you will do anything to head-butt you. His A.I is pretty smart as he tries to see where you’re heading and charges towards that point to cut you off and smash you into little robot pieces which makes him a though opponent.

The main thing I have done this week is doing the moving animation for Buggers in […]

/ Comments Off on Suit Em’ Up – Buggers
Program: Graphics

Week 6 – With Intent

This week Have been pretty harsh, the Light Engine ”Let There Be Light” is obviously not optimised for OpenGL properly, so put out more than 2 update-able lights and you get some serious bugs on OS X.
I see no way around this unless I reconfigure the whole LTBL library, which I don’t really have time for right now. For testing Purposes with less lights I can still test the code on Mac with the Prototype, for the full game […]

/ Comments Off on Week 6 – With Intent
Program: Programming

Week 6 – With Intent

This week Have been pretty harsh, the Light Engine ”Let There Be Light” is obviously not optimised for OpenGL properly, so put out more than 2 update-able lights and you get some serious bugs on OS X.
I see no way around this unless I reconfigure the whole LTBL library, which I don’t really have time for right now. For testing Purposes with less lights I can still test the code on Mac with the Prototype, for the full game […]

/ Comments Off on Week 6 – With Intent
Program: Programming