Browsing '2013': Students starting in 2013

Escape – Group 4 – Week 8 – Apparent Issues

Still working with the level editor, since we underestimated just how time consuming the process could be.Another problem became apparent at the play-testing session last Monday. There was no way to test the actual levels. The lead programmer wasn’t able to generate the levels via the TXT’s until a few hours before the session. And so, testers would see weirdly placed furniture, empty rooms and run into invisible walls. Another problem was that if an object would be set so […]

/ Comments Off on Escape – Group 4 – Week 8 – Apparent Issues
Program: Programming

Escape – Group 4 – Week 8 – Apparent Issues

Still working with the level editor, since we underestimated just how time consuming the process could be.Another problem became apparent at the play-testing session last Monday. There was no way to test the actual levels. The lead programmer wasn’t able to generate the levels via the TXT’s until a few hours before the session. And so, testers would see weirdly placed furniture, empty rooms and run into invisible walls. Another problem was that if an object would be set so […]

/ Comments Off on Escape – Group 4 – Week 8 – Apparent Issues
Program: Programming

Game Project Week 8 – Adding Details

This week I continued my work with the environment adding details which I have covered in an earlier blog post so I’m just going to go into more depth about the work flow.
I started to fringe the edges using a couple brushes that I created earlier. I placed the fringe in a layer which is placed underneath the texture layer, at that point it looked pretty badly and nothing like a thorn piece of clothing, which I was aiming for. […]

/ Comments Off on Game Project Week 8 – Adding Details
Program: Graphics

Game Project Week 8 – Adding Details

This week I continued my work with the environment adding details which I have covered in an earlier blog post so I’m just going to go into more depth about the work flow.
I started to fringe the edges using a couple brushes that I created earlier. I placed the fringe in a layer which is placed underneath the texture layer, at that point it looked pretty badly and nothing like a thorn piece of clothing, which I was aiming for. […]

/ Comments Off on Game Project Week 8 – Adding Details
Program: Graphics

Game dev, Suit’em up – New polish features

We have recently had our second playtesting session, the pre-beta one. We got a lot of great feedback to work with. The one thing I think we need to add desperately at this point is player feedback. Another thing that needed to be added, which came up during the playtesting was that playtesters thought that it was boring running long distances across the world.
I’ve been working hard on the second point, the “boring long distances” these past few days and […]

/ Comments Off on Game dev, Suit’em up – New polish features
Program: Programming

Game dev, Suit’em up – New polish features

We have recently had our second playtesting session, the pre-beta one. We got a lot of great feedback to work with. The one thing I think we need to add desperately at this point is player feedback. Another thing that needed to be added, which came up during the playtesting was that playtesters thought that it was boring running long distances across the world.
I’ve been working hard on the second point, the “boring long distances” these past few days and […]

/ Comments Off on Game dev, Suit’em up – New polish features
Program: Programming

Haunted Light 2014-03-13 Sounds and things that’s going to be cut

This week (Monday-Thursday) I’ve been implementing all the sounds I have created during the past week. It was a relatively simple to add the sounds. I added them into our system source file by using a sound manager and sfml’s own method “addSoundBuffer”. For the music you do not actually load them in because it would take too long so they are streamed in, by streaming the music we can set it to looping which led me to changing a […]

/ Comments Off on Haunted Light 2014-03-13 Sounds and things that’s going to be cut
Program: Programming

Haunted Light 2014-03-13 Sounds and things that’s going to be cut

This week (Monday-Thursday) I’ve been implementing all the sounds I have created during the past week. It was a relatively simple to add the sounds. I added them into our system source file by using a sound manager and sfml’s own method “addSoundBuffer”. For the music you do not actually load them in because it would take too long so they are streamed in, by streaming the music we can set it to looping which led me to changing a […]

/ Comments Off on Haunted Light 2014-03-13 Sounds and things that’s going to be cut
Program: Programming

Game Developement and Coding 13 March 2014 – Entity Manager

The Entity Manager
The entity manager is a class that makes sure all objects (or entities) in the game space are updated and displayed on the screen properly.
 
The entity manager can be divided into five parts:
-Add pointers to objects and store them in vectors.
-Update all the objects via their pointers.
-Draw all objects via their pointers.
-Make sure all objects are added to the collision check.
-Check the HP of all objects and delete those that have reached zero or lower.
 
It stores pointers to […]

/ Comments Off on Game Developement and Coding 13 March 2014 – Entity Manager
Program: Programming

Game Developement and Coding 13 March 2014 – Entity Manager

The Entity Manager
The entity manager is a class that makes sure all objects (or entities) in the game space are updated and displayed on the screen properly.
 
The entity manager can be divided into five parts:
-Add pointers to objects and store them in vectors.
-Update all the objects via their pointers.
-Draw all objects via their pointers.
-Make sure all objects are added to the collision check.
-Check the HP of all objects and delete those that have reached zero or lower.
 
It stores pointers to […]

/ Comments Off on Game Developement and Coding 13 March 2014 – Entity Manager
Program: Programming

Explaining the ”Noise maker”


 
This week I’ve been working on completing our design documents since we got a few comments on our first hand in.
The picture above is the image I made to briefly explain how one of our usable items will work. The Item I’m referring to is the ”Noise maker”. This item is meant to be a none-violent alternative to the rest of the players arsenal. It’s supposed to be a single use item which emits sound circles that will draw […]

/ Comments Off on Explaining the ”Noise maker”
Program: Graphics

Explaining the ”Noise maker”


 
This week I’ve been working on completing our design documents since we got a few comments on our first hand in.
The picture above is the image I made to briefly explain how one of our usable items will work. The Item I’m referring to is the ”Noise maker”. This item is meant to be a none-violent alternative to the rest of the players arsenal. It’s supposed to be a single use item which emits sound circles that will draw […]

/ Comments Off on Explaining the ”Noise maker”
Program: Graphics

Explaining the ”Noise maker”


This week I’ve been working on completing our design documents since we got a few comments on our first hand in.
The picture above is the image I made to briefly explain how one of our usable items will work. The Item I’m referring to is the ”Noise maker”. This item is meant to be a none-violent alternative to the rest of the players arsenal. It’s supposed to be a single use item which emits sound circles that will draw […]

/ Comments Off on Explaining the ”Noise maker”
Program: Graphics

Explaining the ”Noise maker”


This week I’ve been working on completing our design documents since we got a few comments on our first hand in.
The picture above is the image I made to briefly explain how one of our usable items will work. The Item I’m referring to is the ”Noise maker”. This item is meant to be a none-violent alternative to the rest of the players arsenal. It’s supposed to be a single use item which emits sound circles that will draw […]

/ Comments Off on Explaining the ”Noise maker”
Program: Graphics

Making a Game Part 5 – The Options Screen

This week I made the options-screen for our game, something that I thought would be pretty straight forward but actually turned out to be pretty difficult.
After creating the state using the framework from the other states I made the button in the Main Menu-state lead into the Options and then started working on some sliders for volume-control, the sliders image was skilfully made by yours truly and is really a pure work of art:

In reality though, it looks awful […]

/ Comments Off on Making a Game Part 5 – The Options Screen
Program: Programming

Making a Game Part 5 – The Options Screen

This week I made the options-screen for our game, something that I thought would be pretty straight forward but actually turned out to be pretty difficult.
After creating the state using the framework from the other states I made the button in the Main Menu-state lead into the Options and then started working on some sliders for volume-control, the sliders image was skilfully made by yours truly and is really a pure work of art:

In reality though, it looks awful […]

/ Comments Off on Making a Game Part 5 – The Options Screen
Program: Programming

Guard running and alerted animation

This week I have continued on the animations. One of the animations I have made this week was a run animation for the guard. This run animation is going to be in the chase state when the guard has detected the spy.
So I started by modifying the walk animation to see how it might look. I did this by removing some frames, but that made it look like the guard was walking really fast. I mixed around a bit with […]

/ Comments Off on Guard running and alerted animation
Program: Graphics

Guard running and alerted animation

This week I have continued on the animations. One of the animations I have made this week was a run animation for the guard. This run animation is going to be in the chase state when the guard has detected the spy.
So I started by modifying the walk animation to see how it might look. I did this by removing some frames, but that made it look like the guard was walking really fast. I mixed around a bit with […]

/ Comments Off on Guard running and alerted animation
Program: Graphics

Upcoming Changes – Results of the playtesting

As we’re closing in on the beta stage of production, a small playtesting session was held, to receive feedback from one another as well as get a feeling of what stage every group is at.
For this session, we had three computers running the game, and two computers where people could fill out feedback in a questionnaire, hosted on Google Docs. Despite this, it tended to clog up, either at the game computers, or at the feedback computers, which meant that […]

/ Comments Off on Upcoming Changes – Results of the playtesting
Program: Programming

Upcoming Changes – Results of the playtesting

As we’re closing in on the beta stage of production, a small playtesting session was held, to receive feedback from one another as well as get a feeling of what stage every group is at.
For this session, we had three computers running the game, and two computers where people could fill out feedback in a questionnaire, hosted on Google Docs. Despite this, it tended to clog up, either at the game computers, or at the feedback computers, which meant that […]

/ Comments Off on Upcoming Changes – Results of the playtesting
Program: Programming

Addressing Feedback

Apologies for the slight delay and relatively sparse content of this post, I’ve spent most of this week focusing on preparing for the Beta presentation, as well as fixing up my group’s design document for the second hand-in.
Nevertheless, it’s Thursday, so it’s time for another blog post. Thankfully not all of my time this week has been spent writing documents and practicing speeches, as I had some time to address some feedback we got during our playtesting. A recurring theme […]

/ Comments Off on Addressing Feedback
Program: Graphics

Addressing Feedback

Apologies for the slight delay and relatively sparse content of this post, I’ve spent most of this week focusing on preparing for the Beta presentation, as well as fixing up my group’s design document for the second hand-in.
Nevertheless, it’s Thursday, so it’s time for another blog post. Thankfully not all of my time this week has been spent writing documents and practicing speeches, as I had some time to address some feedback we got during our playtesting. A recurring theme […]

/ Comments Off on Addressing Feedback
Program: Graphics

Upcoming Changes – Results of the playtesting

As we’re closing in on the beta stage of production, a small playtesting session was held, to receive feedback from one another as well as get a feeling of what stage every group is at.
For this session, we had three computers running the game, and two computers where people could fill out feedback in a questionnaire, hosted on Google Docs. Despite this, it tended to clog up, either at the game computers, or at the feedback computers, which meant that […]

/ Comments Off on Upcoming Changes – Results of the playtesting
Program: Programming

Upcoming Changes – Results of the playtesting

As we’re closing in on the beta stage of production, a small playtesting session was held, to receive feedback from one another as well as get a feeling of what stage every group is at.
For this session, we had three computers running the game, and two computers where people could fill out feedback in a questionnaire, hosted on Google Docs. Despite this, it tended to clog up, either at the game computers, or at the feedback computers, which meant that […]

/ Comments Off on Upcoming Changes – Results of the playtesting
Program: Programming