Daily Archives: January 30, 2014

Game dev – Game structure, Github, SFML and early version of the game.

We have sat down, us programmers, and discussed how we want the game built with engine, managers and states. We use a program for flowcharts called Dia. It seems to have some bugs though so maybe we will change it out. This is an early version of the flowchart I just mentioned. A work in progress:

We worked on it, got feedback and here below is the final version as it looks now. Things might change:

I added delta time […]

/ Comments Off on Game dev – Game structure, Github, SFML and early version of the game.
Program: Programming

Game dev – Game structure, Github, SFML and early version of the game.

We have sat down, us programmers, and discussed how we want the game built with engine, managers and states. We use a program for flowcharts called Dia. It seems to have some bugs though so maybe we will change it out. This is an early version of the flowchart I just mentioned. A work in progress:

We worked on it, got feedback and here below is the final version as it looks now. Things might change:

I added delta time […]

/ Comments Off on Game dev – Game structure, Github, SFML and early version of the game.
Program: Programming

Unnamed Fish Game BloggPost 2

Today we had two Interesting lectures from Ernest Adams and Adam Mayes.
This cover the some of the mayor principles of how to create games and how important it is to test if it will be fun. The lecture covered 5 types of Core Mechanics
– Physics
– Economics
– Progression
– Tactic Maneuvering
– Social Interaction
And how important it is for programmers to create a way for the Game Designer to make changes in the game without having to go to the programmers asking, can […]

/ Comments Off on Unnamed Fish Game BloggPost 2
Program: Programming

Unnamed Fish Game BloggPost 2

Today we had two Interesting lectures from Ernest Adams and Adam Mayes.
This cover the some of the mayor principles of how to create games and how important it is to test if it will be fun. The lecture covered 5 types of Core Mechanics
– Physics
– Economics
– Progression
– Tactic Maneuvering
– Social Interaction
And how important it is for programmers to create a way for the Game Designer to make changes in the game without having to go to the programmers asking, can […]

/ Comments Off on Unnamed Fish Game BloggPost 2
Program: Programming

EntityManager, an inheritance problem

Så idag har varit en intressant dag, har börjat testa arv i c++ och det finns mycket man inte kan och man hittar ständigt nya saker som man  både kan och inte kan göra. Som “pure virtual functions“, om man vill läsa om dem så rekommenderar jag denna länken: http://www.learncpp.com/cpp-tutorial/126-pure-virtual-functions-abstract-base-classes-and-interface-classes/
Hursomhelst så har jag stött på ett problem idag när jag jobbade på en “EntityManager“, som skulle hålla en vector med “Entity” pekare. Där Entity är basklassen för alla objekt som finns […]

/ Comments Off on EntityManager, an inheritance problem
Program: Programming

EntityManager, an inheritance problem

Så idag har varit en intressant dag, har börjat testa arv i c++ och det finns mycket man inte kan och man hittar ständigt nya saker som man  både kan och inte kan göra. Som “pure virtual functions“, om man vill läsa om dem så rekommenderar jag denna länken: http://www.learncpp.com/cpp-tutorial/126-pure-virtual-functions-abstract-base-classes-and-interface-classes/
Hursomhelst så har jag stött på ett problem idag när jag jobbade på en “EntityManager“, som skulle hålla en vector med “Entity” pekare. Där Entity är basklassen för alla objekt som finns […]

/ Comments Off on EntityManager, an inheritance problem
Program: Programming

EntityManager, an inheritance problem

Så idag har varit en intressant dag, har börjat testa arv i c++ och det finns mycket man inte kan och man hittar ständigt nya saker som man  både kan och inte kan göra. Som “pure virtual functions“, om man vill läsa om dem så rekommenderar jag denna länken: http://www.learncpp.com/cpp-tutorial/126-pure-virtual-functions-abstract-base-classes-and-interface-classes/
Hursomhelst så har jag stött på ett problem idag när jag jobbade på en “EntityManager“, som skulle hålla en vector med “Entity” pekare. Där Entity är basklassen för alla objekt som finns […]

/ Comments Off on EntityManager, an inheritance problem
Program: Programming

EntityManager, an inheritance problem

Så idag har varit en intressant dag, har börjat testa arv i c++ och det finns mycket man inte kan och man hittar ständigt nya saker som man  både kan och inte kan göra. Som “pure virtual functions“, om man vill läsa om dem så rekommenderar jag denna länken: http://www.learncpp.com/cpp-tutorial/126-pure-virtual-functions-abstract-base-classes-and-interface-classes/
Hursomhelst så har jag stött på ett problem idag när jag jobbade på en “EntityManager“, som skulle hålla en vector med “Entity” pekare. Där Entity är basklassen för alla objekt som finns […]

/ Comments Off on EntityManager, an inheritance problem
Program: Programming

Next game started – Concept “Escape”

After a couple of weeks silent I’m now back for more regular updates.
In our new course Game Development – Introduction (I think it is called) we are to choose another groups concept and develop it to a working game. It is the same group as in Game Design – Introduction except that we got another member, a graphic artist, and we chose to take the concept “Escape”.
You are an agent and have to escape a building without getting caught.

January 30, 2014 / Comments Off on Next game started – Concept “Escape”
Program: Programming

Next game started – Concept “Escape”

After a couple of weeks silent I’m now back for more regular updates.
In our new course Game Development – Introduction (I think it is called) we are to choose another groups concept and develop it to a working game. It is the same group as in Game Design – Introduction except that we got another member, a graphic artist, and we chose to take the concept “Escape”.
You are an agent and have to escape a building without getting caught.

January 30, 2014 / Comments Off on Next game started – Concept “Escape”
Program: Programming

Viewport

Bah! Instead of going to bed I wanted to create a viewport for our game prototype.
So what is a viewport?A viewport is a portion of the whole game screen that can be manipulated to show any area on the whole game screen by setting a position on it. In my example the viewport centers around the main character(the player).In my algorithm I added some lines of code that will prevent the viewport from showing extra stuff outside the game window […]

/ Comments Off on Viewport
Program: Programming

Viewport

Bah! Instead of going to bed I wanted to create a viewport for our game prototype.
So what is a viewport?A viewport is a portion of the whole game screen that can be manipulated to show any area on the whole game screen by setting a position on it. In my example the viewport centers around the main character(the player).In my algorithm I added some lines of code that will prevent the viewport from showing extra stuff outside the game window […]

/ Comments Off on Viewport
Program: Programming

2014-01-29

Hello world,
A bit late maybe to post about yesterdays work, but I’m still at school so to me it’s still Wednesday.
So, today me and my two co-programmers met up with Jerry who gave us a 30 minute lesson about how states and state management works. I’ve also been reading about it and watching tutorials. Last thing I did today (besides playing an ARAM in LoL) was to try to implement what I’ve learned about states and actually trying to create some […]

/ Comments Off on 2014-01-29
Program: Programming

2014-01-29

Hello world,
A bit late maybe to post about yesterdays work, but I’m still at school so to me it’s still Wednesday.
So, today me and my two co-programmers met up with Jerry who gave us a 30 minute lesson about how states and state management works. I’ve also been reading about it and watching tutorials. Last thing I did today (besides playing an ARAM in LoL) was to try to implement what I’ve learned about states and actually trying to create some […]

/ Comments Off on 2014-01-29
Program: Programming