Author Archives: Johan Öhman

About Johan Öhman

2014  Programming

Programming update

So here is the finished guessing game. I should have posted it way earlier because it already feels like I could do it better with the knowledge from the first lectures of this week. But I figure this is too basic a game to put any more time into, because regardless how perfect, it will always be a boring game to play.

#include
#include
#include

int random(int min, int max)
{
    return min + (rand() % (max – min + 1));
}

int main(int […]

/ Comments Off on Programming update
Program: Programming

Programming update

So here is the finished guessing game. I should have posted it way earlier because it already feels like I could do it better with the knowledge from the first lectures of this week. But I figure this is too basic a game to put any more time into, because regardless how perfect, it will always be a boring game to play.

#include
#include
#include

int random(int min, int max)
{
    return min + (rand() % (max – min + 1));
}

int main(int […]

/ Comments Off on Programming update
Program: Programming

Programming update

So here is the finished guessing game. I should have posted it way earlier because it already feels like I could do it better with the knowledge from the first lectures of this week. But I figure this is too basic a game to put any more time into, because regardless how perfect, it will always be a boring game to play.

#include
#include
#include

int random(int min, int max)
{
    return min + (rand() % (max – min + 1));
}

int main(int […]

/ Comments Off on Programming update
Program: Programming

Programming update

So here is the finished guessing game. I should have posted it way earlier because it already feels like I could do it better with the knowledge from the first lectures of this week. But I figure this is too basic a game to put any more time into, because regardless how perfect, it will always be a boring game to play.

#include
#include
#include

int random(int min, int max)
{
    return min + (rand() % (max – min + 1));
}

int main(int […]

/ Comments Off on Programming update
Program: Programming

First weekly programming post

This week has been the first week of the “Game Programming I” course. Since the course doesn’t require any previous knowledge of programming, the material has been pretty basic so far. Which suits me well, I realize now. I have a tiny bit of programming experience from playing around in GameMaker years ago, but GameMaker has its own programming language which in my opinion is a lot easier to use than the more powerful “C++” we are learning now. Even […]

/ Comments Off on First weekly programming post
Program: Programming

First weekly programming post

This week has been the first week of the “Game Programming I” course. Since the course doesn’t require any previous knowledge of programming, the material has been pretty basic so far. Which suits me well, I realize now. I have a tiny bit of programming experience from playing around in GameMaker years ago, but GameMaker has its own programming language which in my opinion is a lot easier to use than the more powerful “C++” we are learning now. Even […]

/ Comments Off on First weekly programming post
Program: Programming

Welcome to my blog

My name is Johan Öhman and I am a first year student of game design at Uppsala University, Campus Gotland. The program is called “Game Design & Programming” and so obviously includes programming too, something I hope I will come to enjoy as much as design. Games is not my only main interest; I am an amateur composer as well. The music I compose is in the genre of film music, which kind of means that it doesn’t belong in […]

/ Comments Off on Welcome to my blog
Program: Programming

Welcome to my blog

My name is Johan Öhman and I am a first year student of game design at Uppsala University, Campus Gotland. The program is called “Game Design & Programming” and so obviously includes programming too, something I hope I will come to enjoy as much as design. Games is not my only main interest; I am an amateur composer as well. The music I compose is in the genre of film music, which kind of means that it doesn’t belong in […]

/ Comments Off on Welcome to my blog
Program: Programming