Games, systems, websites, and tools.

All submissions (137)

A submission for Make games. 210

Hey streakers, this is my last post for a while. I have a few side projects in the works, and some of them are not games, so I can't post about them here.

Additionally, I started streak.club because I was 100% burnt out at my job, and I needed some projects to look forward to after working 12h days. I quit that dead-end job 6 weeks ago, and I am much happier as a result. My new gig gives me time and motivation for side projects. I don't feel like I need this website to hold me accountable, because I want to keep progressing, and I have the creative energy for it.

Thanks for the support, and keep being inspiring :)

I added a bunch of sound effects to the game.

My AI now attacks at random!

A submission for Make games. 207

Ironed out a stupid bug that made me think the AI dumber than it actually is. That's how it start, kids, and then Skynet happens.

Anyway, my first AI moves units around as it should, and tomorrow I'll start working on making these robots attack the other team.

A submission for Make games. 206

Fixed a bunch of bugs with my AI. It's still hella dumb, but it won't make units walk over each other anymore.

I think this is as good as it's gonna get, y'all.

A submission for Make games. 204

Still stuck in AI land. I might have to resort to drinking. Or maybe the other way around, idk.

Also, I've been playing way too many hours of TerraTech.

A submission for Make games. 203

Not as much progress as I'd want, but I'm taking it easy this weekend. I'm exhausted from the week so I'm taking it easy, and I'm also doing research for a potential new project.

I worked on AI some more, ironing out the system. Integrating an abstract system into a practical game loop never works the first time, so I'm taking the iterative approach with it. Visible progress = happy programmer.

A submission for Make games. 202

Lots of progress on the AI system, but still nothing to show.

AI rising

A submission for Make games. 201

Started implementing a very dumb AI, called Alpha. I was hoping I could get it to work tonight, but I didn't have enough time to write the AI wrapper.

I envision a system where I iterate upon the AI's 'intelligence' through abstraction. In other words, using generic methods that I override on a per-AI-subclass basis:

class AIBase extends MonoBehavior
{
    protected List<Unit> GetUnitsWeCanAttack()
    {
        // return the list of units
    }

    protected List<Tile> GetTilesWeCanMoveTo()
    {
        // return the list of tiles
    }

    // methods that children will override
    protected virtual Unit ChooseUnitToAttack() {}
    protected virtual Tile ChooseTileToMoveTo() {}
}

class AlphaAI extends AIBase
{
    override protected Unit ChooseUnitToAttack()
    {
        // return the closest unit
    }

    override protected Tile ChooseTileToMoveTo()
    {
        // return a random tile within range
    }
}

Added panning and zooming to the controls. Not very exciting, but very essential for gameplay. I also fixed the pivot of the new spritesheets.

I implemented the "non-walkable" tiles, which makes the map feel like an actual battlefield, and the ability for the map loader to spawn different unit prefabs.

The gif below shows two new enemies: one that can shoot very far but moves very slowly, and one that does the opposite of that. It's simple and overdone, but it makes the game feel more strategic. At least until I added some real mechanics.

Sidenote: I haven't added the 'anti-friendly-fire' code yet, so any unit can shoot any other unit. I don't think I want to leave that in, but I surely want some AoE weapons, so friendly fire could come into play.

A submission for Make games. 198

Well, I was hoping to wrap up the collidable/non-walkable tiles tonight, but we had dinner plans and I only had a short while to work on the game. Additionally, I hunted down a handful of bugs that I introduced with the map generation. They were mostly caused by the fact that I was using the Start() method on the units, which was getting called before the map had finished loading, and thus they never registered. Fun stuff.

More gifs soon!


Map Load

A submission for Make games. 197

I'm back from visiting my family, so I spent some time implementing map loading. I'm satisfied with the simplicity of the system (for now, at least). I have yet to implement "unwalkable" tiles, but I don't expect much resistance from the Unity gods on that one.

A submission for Make games. 196

Still away from home, still doing research into TBS games AI. Influence maps are super interesting, and so is this article.

Been thinking about implementing AI lately. I'm away from home for the weekend, so I'm doing research until I can get back to my repo.

This blog contains crazy good iterative information about creating turn-based AI systems, and I'm really excited to give it a shot myself.

So this is far from pretty for now, but I started writing up a map importer. A month or so ago, I worked on xml templates for maps, so I'm going off of those templates and parsing the elements into the game.

Game flow

A submission for Make games. 193

Added a couple of UI elements and fixed some more bugs in my engine. UI isn't very exciting, but having a gameloop is important for my motivation. Don't hate.

Added a few effects to the game. Stuff can now die, which means I finally have a real videogame on my hands!

Tonight I mocked up some healthbars (they're just sprites, nothing dynamic yet) and added them into the game. Units can now get damaged, but are still unaware of the whole 'death' thing. I fixed a few bugs with the turn-based engine as well, so that's pretty solid for now.

GUNS

A submission for Make games. 190

My units can now shoot and move, in any order. I also made the tile overlays less intense, as suggested by Bobbo. I'm fixing up some kinks with the turn-based engine underneath all of this, but it's looking promising!

Bug fixes

A submission for Make games. 189

Fixed the bugs from yesterday, and added some temp graphics over the reachable tiles. Movement is pretty solid right now!

#shipit

A submission for Make games. 188

I've done it, folks. Pathfinding and movement are 100% functional.

A*

A submission for Make games. 187

Got pathfinding working, so I can start messing with movement tomorrow. Enjoy my glorious debugging graphics!


A submission for Make games. 186

I found some old code I wrote last year that does exactly what I need for pathfinding, so I'm making good progress :D

Loading more

Completed streaks