Prototyping

Stage 1 Challenge

Senior Production

Post IV


This week has been a bit of a crunch for the team and there is definitely a lot on our minds right now. With the challenge of the first stage in our not so distant future, we are scrambling to get all the requirements done in time to be able to actually move forward. While we could definitely spend a bit more time on this very prototype heavy phase of development, we are pretty sure we know what we want to do and what to move forward with. Before I reveal what we’ve decided to move forward with, I have more updates on what i’ve worked on this week!

BBR has gotten a little bit of a facelift and has progressed nicely into a game (albeit a pretty awful game). It needs a lot of work still, but that is to be expected as its an initial prototype. In this past week i’ve managed to get a scrolling texture on the floor, enemy spawning, basic enemy AI, shooting and killing. I also updated the 2D aspect which now has assets and has a slight camera improvement. This is kind of a long list of features so I think it would be best to show it with a quick video demonstration! This is the video we will be using to present gameplay of BBR this Wednesday when we challenge the first stage.

So now that brings me to the topic of our choice. The team and I had a long conversation on Monday, we weighed the pluses and minuses of each game. We talked about potential problems such as a light or heavy workload (for the game), needing certain resources down the road, potential technical problems, etc. It was pretty thorough and we were able to eliminate at least 1 game, leaving the decision down to two games instead of three. Our conversation continued for a little bit longer and we started to consider how other people (outside of the team) felt about the two remaining games and with that we came to a unanimous decision. We are making a survival game.

The winner was chosen for a few reasons. For starters, it was something we had talked about the most amongst ourselves. Almost every conversation we’ve had since introducing the idea has involved the idea in some way. There is very clearly excitement around it and when presenting our survival game to the class and other people, they definitely tend to respond quite well to the idea. We also decided to pick this idea because it gave us a lot room to craft the experience we want the player to have. Everything from the look, the feel, the sound and more. I personally voted for it because of the chance to mess with an interesting AI (the darkness/shadows) that will be ever present in the game. From a marketing side as well, this game is fairly viable because it would fit into the survival and potentially horror markets. This tends to appeal to a larger audience than Tower Defenses and Bullet Hells which makes it a more favorable pick. Overall, i’m pretty happy with our choice and while i’m sad to see BBR and the Tower Defense go away, i’m certain we will memorialize it in some way.

With that, I bring this post to a conclusion with a video of the game which we will be moving forward with.

TL;DR:

  • BBR is a game now
  • We are challenging the first stage
  • We picked the survival game
  • I’m excited for the AI

Prototyping

Senior Production

Post III


This week marked the end of an era, and the beginning of a new one. At the end of the week, moving into the early parts of the weekend, I reached a point in the tutorial I was following where I no longer needed to continue. Not because I had finished it (far from it, lots of cool polish related features were remaining), but I got to see enough of the engine and how to do things that I could leave the nest and fly on my own. Towards the later part of the weekend, during my untimely catching of a really nasty sickness and some of monday, I managed to scrunge together most of a prototype for one of our games, Balls Balls Revolution (BBR will be used from now on so I don’t have to keep typing it).

I mentioned BBR in my first blog post where I talked about some of our brainstorming ideas. If you want to go back and read it, the link is here: http://vincentloignon.com/blog/brainstorm/. If not, that’s fine, because i’m actually going to talk about it a bunch in this post and you can probably figure it out. I suppose this now makes “What did I get done?” the all important question. The short answer is a lot of important systems, but from the outside, it looks like a whole lot of nothing. Lets take a look at it a bit more in-depth to witness some of the neat things I got up and running.

 

3D

BBR1

 

2D

BBR2

 

This is a graphic representation of some of the things that have been achieved. Now, It is important to note that you can’t see roughly 95% of the work I did from this, but lets break it down and see the insides.

The first thing to look at is the environment. The player (gold orb) is on a platform (the ugly grey thing). The camera is static and doesn’t move and in the 3D space, it is angled slightly so you can see ahead (hence the perspective warping on the ground). The player can move around the platform, but is blocked by invisible barriers I have placed so they cannot falloff and so they can only move so far up the platform (like most bullet hells tend to do). The player is also able to Dimension Hop between 2D and 3D. However, 2D is currently incomplete visually.

We also have another important system which is shooting. In fact, the shooting system has been built in a way is very easy to extend and create all sorts of bullet spreads and projectile types. These will be very important for building a bullet hell. Now, I tried to make a video to show this off because that would be the easiest way to do that. The biggest problem was that I kept coughing due to my recent sickness and my mic has horrible static, so i’ve opted for a picture heavy post this time. I am looking towards fixing my mic problem for the future so that I might be able to show some of these things in video form. I will explain it all first then just put all of the images in a gallery of sorts to look through should you wish to.

  1. The first step is to create your bullet spread. You can create a blueprint class and extend a class i’ve created in code called Bullet Spread. What this class does is when told to fire a projectile, it will search all of its sub-components and find all of the Arrow Components. These represent where to spawn the projectile and how to orient it in 3D space. It then creates a projectile of the type specified for each arrow. This means it is easy to create bullet spreads because its all visual in the editor and the system just handles everything else.
  2. The second step is to create your projectile. The projectile is slightly more complex, but is also very simple. You create a blueprint class, extending yet another class i’ve created in code called Projectile (big surprise). This class contains a mesh component, sphere collision component, and projectile movement component. The collision is separate from the mesh on purpose so you can customize them separately. The process is fairly simple, you import a mesh into the mesh component, tweak it as needed (materials and other settings). You can adjust your sphere collider to fit within your mesh as best you can or what will make sense in a game context. You then adjust the movement to work in the fashion you want. In my example, I turned off gravity, gave it a slight Y velocity (so it fires at a 45 degree angle to the arrow component) and give it a velocity. The nice thing is that you can also add other components and customize it to your liking and the base systems will still work.
  3. Lastly you go into the player’s blueprint and change which spread and projectile to use, in this case the ones you just created. Also make sure that you compiled everything before running! You can now run it and see your cool new spread and projectile in game!
  4. Profit!

 

[tribulant_slideshow gallery_id=”2″]

 

This brings my post for this week to an end, but there will be more in the coming weeks as I detail the progression of capstone from my eyes. Just keep in mind things I talk about may vary between things I’ve done and things my team has done.

TL;DR:

  • Finished Tutorial
  • Started BBR prototype
    • Dimension Hopping!
    • Bullet Spreads & Projectiles!
    • You can make your own bullet spreads and projectiles easily!