Daily Archives: November 15, 2014
Engine Design – Input Commands
I’m currently working on my own game engine and while it’s no where near from being finished, I’ve applied a couple of design patterns when creating the different systems. In the coming weeks I’ll go through a system each at a time and write about how I have implemented them and what problems I might have stumbled upon.
This week’s system is the input system which enables the player, may it be everything from a tank to a warrior with […]
Engine Design – Input Commands
I’m currently working on my own game engine and while it’s no where near from being finished, I’ve applied a couple of design patterns when creating the different systems. In the coming weeks I’ll go through a system each at a time and write about how I have implemented them and what problems I might have stumbled upon.
This week’s system is the input system which enables the player, may it be everything from a tank to a warrior with […]
Engine Design – Input Commands
I’m currently working on my own game engine and while it’s no where near from being finished, I’ve applied a couple of design patterns when creating the different systems. In the coming weeks I’ll go through a system each at a time and write about how I have implemented them.
This weeks system is the input system which enables the player, may it be everything from a tank to a warrior with an axe, to move and perform all their […]
Engine Design – Input Commands
I’m currently working on my own game engine and while it’s no where near from being finished, I’ve applied a couple of design patterns when creating the different systems. In the coming weeks I’ll go through a system each at a time and write about how I have implemented them.
This weeks system is the input system which enables the player, may it be everything from a tank to a warrior with an axe, to move and perform all their […]
First time I drew thumbnails
It was the first time I drew thumbnails, as well as attempts of designing armor/modern clothing combination. Shoulder armor isn’t all that difficult, even when inexperienced, and it was rather amusing to try making different body types when making the thumbnails.
First time I drew thumbnails
It was the first time I drew thumbnails, as well as attempts of designing armor/modern clothing combination. Shoulder armor isn’t all that difficult, even when inexperienced, and it was rather amusing to try making different body types when making the thumbnails.
First time I drew thumbnails
It was the first time I drew thumbnails, as well as attempts of designing armor/modern clothing combination. Shoulder armor isn’t all that difficult, even when inexperienced, and it was rather amusing to try making different body types when making the thumbnails.
First time I drew thumbnails
It was the first time I drew thumbnails, as well as attempts of designing armor/modern clothing combination. Shoulder armor isn’t all that difficult, even when inexperienced, and it was rather amusing to try making different body types when making the thumbnails.
Weekly Programming III Post 1
This week was the first week of the course Programming III.
To start off this new course we were handed out an assignment to compress a BMP file as much as possible, then restore it to the original BMP file that it was from the beginning. The first thought of this was how do you even?….
Doing this assignnment in a group of 3 persons helped. There was some backseat programming as it was hard to split out the work of one […]
Weekly Programming III Post 1
This week was the first week of the course Programming III.
To start off this new course we were handed out an assignment to compress a BMP file as much as possible, then restore it to the original BMP file that it was from the beginning. The first thought of this was how do you even?….
Doing this assignnment in a group of 3 persons helped. There was some backseat programming as it was hard to split out the work of one […]
Weekly Programming III Post 1
This week was the first week of the course Programming III.
To start off this new course we were handed out an assignment to compress a BMP file as much as possible, then restore it to the original BMP file that it was from the beginning. The first thought of this was how do you even?….
Doing this assignnment in a group of 3 persons helped. There was some backseat programming as it was hard to split out the work of one […]
Weekly Programming III Post 1
This week was the first week of the course Programming III.
To start off this new course we were handed out an assignment to compress a BMP file as much as possible, then restore it to the original BMP file that it was from the beginning. The first thought of this was how do you even?….
Doing this assignnment in a group of 3 persons helped. There was some backseat programming as it was hard to split out the work of one […]
Programming week one!
Hi there blog!
Long time no see. I have been busy doing stuff so nothing has been happening here lately.This week the programming course started! I love programming so for me to just be able to focus all my time on stuff that I love a lot is amazing.
Since I have been programming a bunch before there wasn’t really anything new to me concept wise. The thing that differs in how programming languages are operated is usually just syntax, which often […]
Programming week one!
Hi there blog!
Long time no see. I have been busy doing stuff so nothing has been happening here lately.This week the programming course started! I love programming so for me to just be able to focus all my time on stuff that I love a lot is amazing.
Since I have been programming a bunch before there wasn’t really anything new to me concept wise. The thing that differs in how programming languages are operated is usually just syntax, which often […]
11 weeks later! [Comic]
Hi!
Everyone keeps saying the students should be posting blogs left and right. I have not posted anything in elven weeks. So that’s cool! Here’s why:
With that said, I will try to get over the pressure and post some magical stuff anyway. Artwork, game design junk, and probably a few more comics.
So hey here is a list of things I have done these past eleven weeks. It is like a TL:DR of eleven unexisting blogs!
1. Designed a bunch of stuff
2. Attempted […]
11 weeks later! [Comic]
Hi!
Everyone keeps saying the students should be posting blogs left and right. I have not posted anything in elven weeks. So that’s cool! Here’s why:
With that said, I will try to get over the pressure and post some magical stuff anyway. Artwork, game design junk, and probably a few more comics.
So hey here is a list of things I have done these past eleven weeks. It is like a TL:DR of eleven unexisting blogs!
1. Designed a bunch of stuff
2. Attempted […]
11 weeks later! [Comic]
Hi!
Everyone keeps saying the students should be posting blogs left and right. I have not posted anything in elven weeks. So that’s cool! Here’s why:
With that said, I will try to get over the pressure and post some magical stuff anyway. Artwork, game design junk, and probably a few more comics.
So hey here is a list of things I have done these past eleven weeks. It is like a TL:DR of eleven unexisting blogs!
1. Designed a bunch of stuff
2. Attempted […]
11 weeks later! [Comic]
Hi!
Everyone keeps saying the students should be posting blogs left and right. I have not posted anything in elven weeks. So that’s cool! Here’s why:
With that said, I will try to get over the pressure and post some magical stuff anyway. Artwork, game design junk, and probably a few more comics.
So hey here is a list of things I have done these past eleven weeks. It is like a TL:DR of eleven unexisting blogs!
1. Designed a bunch of stuff
2. Attempted […]
Recursion
This week in programming we have learnt about Binary Search Trees (BST). While creating the program for a BST recursion is a great method to know and to use. Recursion is when a method calls itself from inside. You can read more about it on wikipedias page about recursion: http://en.wikipedia.org/wiki/Recursion_%28computer_science%29
I thought I could go through how I wrote my code to find the node to erase in the tree and why I chose to do it in that way. […]
Recursion
This week in programming we have learnt about Binary Search Trees (BST). While creating the program for a BST recursion is a great method to know and to use. Recursion is when a method calls itself from inside. You can read more about it on wikipedias page about recursion: http://en.wikipedia.org/wiki/Recursion_%28computer_science%29
I thought I could go through how I wrote my code to find the node to erase in the tree and why I chose to do it in that way. […]
Recursion
This week in programming we have learnt about Binary Search Trees (BST). While creating the program for a BST recursion is a great method to know and to use. Recursion is when a method calls itself from inside. You can read more about it on wikipedias page about recursion: http://en.wikipedia.org/wiki/Recursion_%28computer_science%29
I thought I could go through how I wrote my code to find the node to erase in the tree and why I chose to do it in that way. […]
Recursion
This week in programming we have learnt about Binary Search Trees (BST). While creating the program for a BST recursion is a great method to know and to use. Recursion is when a method calls itself from inside. You can read more about it on wikipedias page about recursion: http://en.wikipedia.org/wiki/Recursion_%28computer_science%29
I thought I could go through how I wrote my code to find the node to erase in the tree and why I chose to do it in that way. […]
Data structures
What did I do?
I wrote algorithms for two basic generic data structures: a linked list and a binary search tree (BST). This was done for two reasons: to derust after not coding for a while, and to learn a bit about data structures.
Some short definitions: a linked list consists of nodes, which contain some data and a pointer to the next node in line. This creates a list which can be easily iterated through in order to find whatever data […]
Data structures
What did I do?
I wrote algorithms for two basic generic data structures: a linked list and a binary search tree (BST). This was done for two reasons: to derust after not coding for a while, and to learn a bit about data structures.
Some short definitions: a linked list consists of nodes, which contain some data and a pointer to the next node in line. This creates a list which can be easily iterated through in order to find whatever data […]