04/07/2016 – Happy America Day!

Although being in Northern Ireland, there’s not really much reason to care.

Not a long post today, mostly just gonna talk about my project. Progress is going well, albeit a bit slowly at the moment. The itch.io page has links to the development long if you’re looking for specifics. That said, I want to talk about feature creep and individual systems taking more time than they should.

The latter first. So a system I’ve been working on a sub-system that picks that an enemy distribution pattern in the game based on the player’s progress. This has taken me a good two weeks to get to the point where I can get something to work, and that mostly comes down to me overthinking its implementation. When I first thought about it, I wanted to build a system that read in from a text file and would generate all the waves of enemies in the game from that. There were two problems with this system:

  1. Each spawner in the game world can take a variety of arguments that defines speed, timing, and what object is spawning. Because of that, if I was to get them, each spawner on screen could require a minimum of 3 arguments. Which considering there could be a dozen or so on screen at anytime, that ends up being a lot of overhead, which Unity is terrible at handling.
  2. In relation to the first issue, I thought a good way to negate it would be to use asynchronous game objects to handle it. However, Unity being Unity, didn’t make that particularly easy. Specially, the more recent versions of .NET allow for Async reading of text files. But Unity, being .NET 3.0, doesn’t have this option. So I had to abandon that idea. The alternative was to use threading, but I’ve never really had much experience with it, and at that point I figured it was more effort than it was worth.

So in the end, I made a hard coded variant that just told the spawners in game what to do. Currently I’m altering that version to take the update cycle into consideration.

Feature creep is something I’ve commented on before, and I’m not gonna say too much on it. But basically, I went from have two notes on my whiteboard to having 5 of them, all filled with additions I want to add to the game. My notebook is also full of them. What’s happened is that I’ve come up better ways with how I want to game to play, but without noting anything technical of how I want to build it.

To be fair, the biggest set of notes is just a list of game modifiers. Regardless, there’s probably stuff I’m either going to cut, or this game is going to take longer than I would like to make. Guess we’ll find out.

Right, that’ll do for now.

-Adam

P.S. Gaming Den post soon.

08/05/2017 – Project Update and Itch.io Dev Log

Hey there folks.

I will probably be using itch.io’s new dev log page for my game to distribute news updates on it. You can view it here. Note that the page is using a secret URL because it isn’t public yet. I’ll probably make it public once I have some useable art assets. You can now view the page publically, but it’ll be generally unlisted if you search for it on the site.

As for the first dev log post, you can view that here freely.

10/1/2017 – Time To Talk About What’s Going On With My Projects

First off, it’s no longer 2016. Secondly, as always, my apologies for not posting more regularly.

My project, the one I’ve been working on since 2015, is cancelled. You can view what is was here. So, let me discuss exactly what happened with it.

Around July of 2015; I have the idea to make a game, and I figured a platformer would be easy enough. I still had some left over code from Global Game Jam of that year and figured it wouldn’t be too difficult to make something playable relatively quickly. In all fairness, that part went fine. I made something playable in about a day or two. The point after that is where the problems begin.

I figured I wanted to make something with an under-lying story. Told through thing you would find in the environment. Then I thought, maybe put important things like codes and stuff into those pieces of story documents. And then I thought, what if playing the game poorly means you can’t access the real ending of the game.

OK, getting a bit complicated, but I still built the foundations for these systems with relative ease, and they actually worked quite well at tracking how the player was doing in the game. For the record, I got up to 500 deaths while debugging.

But then I decided, I should put enemies in the game.
And make it a stealth game.
And add even more types of enemies.
And then have all the enemies swarm you if you alert one of them.
And so on.

Over about 5 months, working almost everyday, I managed to get one enemy type to actually get in and out of alert states and follow the player. Along with a bunch of other tweaks.

Around January, I decided to work on a side project, and that took about 4 months away from this project.

Once I got back to it, I felt somewhat unmotivated to continue, even though I had learnt some new techniques from that side project that I should of ideally implemented into my main project. I carried on regardless, and implemented a new, stationary enemy type. While doing so, I realised the why I was handling AI was wrong, and that I really should be doing some inheritance-based structure for my code to make things a bit easier. Which never got past the early implementation stage.

Then I just played video games because I was lacking the motivation to work on it entirely, and because I wasn’t enjoying what I was doing. The sheer amount of work I had made for myself become far too daunting.

At some point in December, I decided to say “Screw it”, and play video games until the new year. Once the new year came, I looked at what was done, what needed to be done, and what the game was supposed to be; and considered it to no longer be viable to complete within the time frame I had set myself.

And so, here we are.

Overall, nothing significant was made. Frankly when you look it, it doesn’t seem like much. It was my first real Unity project though. But yeah, it looks like something other people would probably make in a couple weeks. As a learning experience, both from learning Unity and in general, I gained a lot of knowledge that will be invaluable for future projects.

Speaking of which; I have started a new project. This time, I decided to actually design what it is supposed to be from a gameplay standpoint, and will not add to it until the base design is implemented and it is absolutely necessary to expand upon it.

I don’t know how long it’s going to take, but I learnt something. Designing the game is something you should do before you start building. Doing things as you go will probably lead to feature creep, and then it’ll just become a nightmare to work on as you add more and more on. Going forward, I’m going to try and avoid that.

The rant on the Xbox One can wait a little longer.

And because everyone loves top-10 lists, here are my top-10 video games of 2016…

10. Senran Kagura Estival Versus
9. Uncharted 4: A Thief’s End
8. Zero Escape III: Zero Time Dilemma
7. Digimon Cyber Sleuth
6. Odin Sphere Leifthrasir
5. Steins;Gate Zero
4. DOOM
3. Titanfall 2
2. The Last Guardian
1. Final Fantasy XV

Honourable Mentions: Hitman (2016), Trackmania Turbo, Amplitude
Released Games I Wanted To Play or Play More Of: Quadrilateral Cowboy, Redout, Dishonored 2, I Am Setsuna, Dark Souls III, Furi, House Of The Dying Sun

And my top-10 anime of 2016:

10. Lupin III Part IV
9. Keijo
8. Shokugeki No Souma S2
7. Fune wo Amu
6. Bungou Stray Dogs
5. Koyomimonogatari
4. Yuri On Ice
3. Uchuu Patrol Luluco
2. New Game!
1. Shouwa Genroku Rakugo Shinjuu

Special Mentions: Kimi no Na Wa, Sansha Sanyou, Sakamoto desu ga?

Pretty good year for both those things. Now to get back to work.

-Adam

11/10/2016: Things I’m Doing These Days

That’s a good five months between posts? My bad.

First things first, I released that shitty pong clone I was working on, it took me 3 months longer to make than I thought, and 2 months longer to mention the fact I released it. Either way, you can go play it now. I’ll be making a page on this site for it at some point. Here is the site page for the game.

Additionally, I still intend on updating the site with all the stuff I did at Uni at some point.

Now on to what I’ve actually been doing.

I’ve been working on my game, or at least half-working on it. And when I wasn’t working on it, I was going to the Enterprise Centre to sort out my business plan; which is now more or less sorted, I just need to fix it up a bit more. Unfortunately, my game isn’t ready to show yet, probably won’t be until sometime next year once I get the art ready and have something to play. I intend on releasing a demo on itch.io when it’s ready, so people will be able to give me feedback on it.

As for video games, I’ve been playing the new Destiny expansion, Forza Horizon 3, Dark Souls III, and the Japanese version of Persona 5. I’ll probably give my impressions of them when I can be bothered to do so. Although do expect a post where I rant about the Xbox One in the somewhat near future.

But yeah, that’s what I’ve been doing. See you whenever.

-Adam

20/05/2016 – Mobile VR 2: Electric Boogaloo, Uncharted 4, and Dealing With Boredom

Hello again.

So that previous mobile VR headset, well turns out that the lenses were fucked. On the inside of it, the plastic was corrugated, so everything I looked at was blurry as shit no matter what I did. So I ended up replacing the thing entirely. Now I have the VIGICA RIEM 2.

This headset actually has a magnet switch (Albeit on the wrong side, so I had to switch it), lense adjusters, suction cup grip for the phone, and generally fits better. But most importantly, the lenses are smooth plastic.

It certainly an improvement over the previous piece of crap I had. Actually it’s so good, since I start using it, my previous complaints about getting motion sick have been minimal at best. So I imagine the clearer picture helps a lot with that. Additionally, it’s Google Cardboard compatible out of the box, although the model I have didn’t have the QR code, but luckily someone had generated one.

That being said, I still can’t see the point of it outside of being a head-mounted display. A decent one at that, but only that.

Now. Uncharted 4.

After the disappointment that was Uncharted 3, I didn’t have that high of expectations going into 4. And after playing a good chunk of The Last Of Us and despising it for it’s animation systems and combat, I really thought it was going to have the same issues.

Thankfully, Naughty Dog have learnt and improved.

Pretty game is pretty.

Pretty game is pretty.

The gameplay systems have been improved where combat is concerned. Gunplay is relatively tight (Although they decided to reinvent the wheel and change how aiming and recoil is handled AGAIN) and enemies a little less bullet spongy. Additionally, other than maybe 3 areas of the game, you can use stealth to get through all your encounters. You could do this in Uncharted 2 as well, but the systems have been significantly improved here with indicators showing when an enemy sees you and so on. And should you want it, you can turn these features off.

The dialogue is good, general quips are still pretty interesting and the interactions between characters works in a believable way. The main two villains aren’t great. The main guy is kind of an arsehole in a “I’m a rich guy who wants to become famous, despite already having fame and fortune from my parents” way, which OK, it works but come on. The other is a woman who just seems over-powered for SOME REASON, but ultimately does the “You guys are crazy I’m out” thing right at end of the game. And frankly that just makes her existence seem pointless.

My biggest problem with the game is that it’s not very memorable. No particular events stand out in my mind like Nazi stuff in Uncharted 1, or the train level in 2, or the desert scene in 3. This might change as time goes on and I think about the game again, but who knows.

The in-game graphics filters are great.

The in-game graphics filters are great.

Well, that’s my two cents on that.

The other game I started working on is near completion now. Just needs some adjustments and extras and it’ll be ready for release on Android.

It should of been finished weeks ago, but unfortunately I’ve been having a problem with keeping myself motivated. I’ve barely been doing anything. I just sit in my chair and browse the Internet all day sometimes and listen to the same songs I’ve heard before and then complain about how bored I am. I can’t even be arsed to go through my staggering backlog of games. So if there’s something I can give Uncharted 4 credit for, it’s making me motivated to do SOMETHING other than slowly dying in front of two LCD monitors.

Now that I’ve gotten past the mental block, maybe I’ll actually be productive again.

And I’ll call the Enterprise Centre soon. I sent them an e-mail a few days ago but never got a reply.

-Adam

P.S.

I’ll be updating this site with stuff I’ve done from Uni soonish. I need to clean up this damn room first.