Daily Archives: March 14, 2014

Friday Speed Paint

This is something I painted in about an hour and a half to practice rendering in grey scale and increasing my work speed, not getting caught up in details. I started with a rough sketch that I cleaned up into line art. I started rendering with a dark background, adding light where needed and blending it with the smudge tool. For the finishing touches I added some extra highlights and I thought about colouring it, but I like it better […]

/ Comments Off on Friday Speed Paint
Program: Graphics

Friday Speed Paint

This is something I painted in about an hour and a half to practice rendering in grey scale and increasing my work speed, not getting caught up in details. I started with a rough sketch that I cleaned up into line art. I started rendering with a dark background, adding light where needed and blending it with the smudge tool. For the finishing touches I added some extra highlights and I thought about colouring it, but I like it better […]

/ Comments Off on Friday Speed Paint
Program: Graphics

Codename: Haunted Light – Redirection

In the last post I wrote that I was going to go through how our level generation worked, but due to missed deadlines we’ve been forced to push the implementation of that feature to later when we have a working path-finding since we prioritize having a challenging game rather than a fancy level-generation. Because of that unfortunate turn of events I’ll now write about how our A-star implementation currently works instead.
Before I even […]

/ Comments Off on Codename: Haunted Light – Redirection
Program: Programming

Codename: Haunted Light – Redirection

In the last post I wrote that I was going to go through how our level generation worked, but due to missed deadlines we’ve been forced to push the implementation of that feature to later when we have a working path-finding since we prioritize having a challenging game rather than a fancy level-generation. Because of that unfortunate turn of events I’ll now write about how our A-star implementation currently works instead.
Before I even […]

/ Comments Off on Codename: Haunted Light – Redirection
Program: Programming

(Part 2) Swedish Game Awards Conference 2014 Report – Talks

Another thing that also happens during SGA Conferences is talks from various people in the game industry. Below is a short summary of the talks that I could attend.
Romi Gråhed from DICE had a talk about development of games in general, what pitfalls a developer might run into and some general tips and tricks for better development of games.
Linnea Harrison from DICE has a talk about something that DICE calles Levolution. In short, it’s how you can change a level in […]

/ Comments Off on (Part 2) Swedish Game Awards Conference 2014 Report – Talks
Program: Programming

(Part 2) Swedish Game Awards Conference 2014 Report – Talks

Another thing that also happens during SGA Conferences is talks from various people in the game industry. Below is a short summary of the talks that I could attend.
Romi Gråhed from DICE had a talk about development of games in general, what pitfalls a developer might run into and some general tips and tricks for better development of games.
Linnea Harrison from DICE has a talk about something that DICE calles Levolution. In short, it’s how you can change a level in […]

/ Comments Off on (Part 2) Swedish Game Awards Conference 2014 Report – Talks
Program: Programming

Binary files in c++

Insomnia strikes again, so I might as well spend the time trying to sleep to post something. This time I’m going to touch into a subject that I believe is the reason why I got the revelation about how memory management works. As the subject says, it’s about reading binary files.
The first thing you do is to include the #include
Next step is fairly simple:
std::ifstream filenamestream(“Filename with path and everything”, std::ios_base::binary);
Normally the filenamestream variable is called a stream. Often I […]

/ Comments Off on Binary files in c++
Program: Programming

Binary files in c++

Insomnia strikes again, so I might as well spend the time trying to sleep to post something. This time I’m going to touch into a subject that I believe is the reason why I got the revelation about how memory management works. As the subject says, it’s about reading binary files.
The first thing you do is to include the #include
Next step is fairly simple:
std::ifstream filenamestream(“Filename with path and everything”, std::ios_base::binary);
Normally the filenamestream variable is called a stream. Often I […]

/ Comments Off on Binary files in c++
Program: Programming

Binary files in c++

Insomnia strikes again, so I might as well spend the time trying to sleep to post something. This time I’m going to touch into a subject that I believe is the reason why I got the revelation about how memory management works. As the subject says, it’s about reading binary files.
The first thing you do is to include the #include
Next step is fairly simple:
std::ifstream filenamestream(“Filename with path and everything”, std::ios_base::binary);
Normally the filenamestream variable is called a stream. Often I […]

/ Comments Off on Binary files in c++
Program: Programming

Binary files in c++

Insomnia strikes again, so I might as well spend the time trying to sleep to post something. This time I’m going to touch into a subject that I believe is the reason why I got the revelation about how memory management works. As the subject says, it’s about reading binary files.
The first thing you do is to include the #include
Next step is fairly simple:
std::ifstream filenamestream(“Filename with path and everything”, std::ios_base::binary);
Normally the filenamestream variable is called a stream. Often I […]

/ Comments Off on Binary files in c++
Program: Programming