They Keep killing each other…

I re-wrote a bunch of the patrol bot AI to use EQS (Environmental query system: see https://dev.epicgames.com/documentation/en-us/unreal-engine/environment-query-system-quick-start-in-unreal-engine#2-environmentquerycontext ) , which should greatly simplify the the bots and give them better criteria to find spots that see the player, but are also kinda close.

Here’s the EQS Tree:

Essentially EQS is a way to break up the navigation grid into nodes, each has a score and the EQS tree determines the score of each node. (Lower the better). In this case I have two tests for each node: Can the node see the current location of the player? Am I close to the player? Here’s another video of things kinda working but not fully:

I also fixed up the rocket so now it wont fly through walls

Here’s some quick gameplay of what I have atm:

It’s very silent right now…Also the stabby bots are quick as hell and I want some kinda warning for that. The gameplay right now is very serious sam and I want to tone it back speed wise. I think I might just slow down all the characters and add it some head bob.

Longer gameplay (with sound) below.

The map I was playing on isn’t great but I figure it might be better than that dev arena that I had before. I’m in the process of re-making the warehouse as a big static mesh so it’s easier on lower performance machines (right now it’s like 200+ meshes).

My 4090 fan is starting to spin up more often so I gotta feeling I might be hitting the limit of my “optimize later” strategy.

Build build build build

I made a real spawn location for the patrol bots:

Isn’t too much to it, just a bunch of boxes and a conveyor that spits out the bots.

I reworked some of the deployment logic so that bots are physics objects before they get fully deployed. That way I can do stuff like drop them off cliffs after being built.

The deployment logic now hardcodes the mesh’s position and rotation before playing the deploy animation (which is why you see them jump up in the second video). A way I can fix/clean this up is by adding a rollover animation which will play if the mesh is disoriented.

Right now the assemblers are attached to timers, when I get this hooked up to the survival game mode I’ll add control back to the game mode to dump out bots as needed.

I also added this guy in game

Doesn’t look great but I want to have one of these at the side of each assembler and allow some kind of “override” command or mini-game to stop the flow of bots or to flip them to your side.

The 5th rocket post

Added particles and sounds for rockets, also added a laser point to the rocket bot.

I made the rocket sound myself by doing a lame attempt to copy the image here (idk the context I straight up just googled “Rocket Sound Spectrum”)

Source: https://www.mdpi.com/2076-3417/13/15/9041

Fasulo, G.; Federico, L.; Sollazzo, A.; De Vivo, L.; Citarella, R. Hybrid Rocket Engine Noise: Measurements and Predictions of Acoustic Environments from Horizontal Static Fire. Appl. Sci. 2023, 13, 9041. https://doi.org/10.3390/app13159041

I did this by making some white noise generators in Abelton and filtering everything down using EQ 8:

Bassy Noise
Higher Pitched Hiss
Over Saturated mid region

Not a perfect re-creation (I did not read the paper also didn’t compensate for the A weighting, which I think they would add here?) but close enough.

The laser and rocket tail are just Niagara systems, the laser has an input that is updated every tick from the rocket bot.

I kinda want the bot to aim itself at the player, that way the laser gets shined in their eyes. But maybe next time around? I really gotta work on the base map for v0.0.1( or was it v0.0.2?)

I wanted cars in the map so I did a 5 minute car….yeah…

Sound-y Sound and Bot Deployments

I swear the snare isn’t as prominent on my pc….

Added in ai perception logic

(Also the hud is still crap and rockets fly through walls….)

Right now I have the detection radius at like 1m so thats why I have to rub against the robot to get it standing up. This required some mods to the AI tree:

You can see that “start Engage” block is now orphaned off the tree. The original blueprint essentially just found the player no matter the situation and copied it into the “target” field on the blackboard:

By removing that I pushed the selection of the target to the pawn itself. Now the general logic is: I SEE A PLAYER! ATTACK! Rather than being provided a player by the engine.

Unreal’s AI Perception is one of those things that are just kinda “done” in the engine and it works the way you expect.

The goal is that I’ll have some kind of assembly line that will dump out “undeployed” robots then they’ll get deployed and try to find you in the map. Also this lets me make lying in wait kinda situations with the bots. Also if I’m aiming for a killing floor style of wave survival I want to have explicit building spawners that play an animation and dump out robots.

Rockets….Rockets Everywhere

Got some rockets made, they use UE5 projectile movement atm. I hit a couple funny bugs along the way:

The final result turned out fine.

There’s 1000 things I want to fix on this (explosion sounds/effects, better reload animations, better looking rocket in general, tune speed blah blah blah). But the framework of the idea is there and that’s all I’m going for atm.

I also re-worked the explosion stuff into a library function to let me re-use explosions as I need them:

I also had the first instance of giving myself issues with the blend -> ue5 addon. Apparently unreal has no idea where you got the model from if you don’t have blender open. In my head this is totally reasonable but it took me by surprise (I always assumed it would dump the .fbx somewhere).

The rockets themselves have some brains in them:

Mostly just having a impulse on spawn which just launches it forward, then two timers to handle when to fire engines and when to just give up and explode.

My next goal is to get a v0.0.2 setup and running and handed out to a few people. Main things there:

1.) Re-work the warehouse map so it doesn’t look terrible and is kinda playable

2.) Remake the main menu

3.) Add explosion sprites

I guess thats it? I probably forgot something but I’ll figure that out when I hit it.

Rockets…man

Gameplay isn’t done yet but I got some paint setup on the rocket launcher and the rocket.

Threw a bunch of random phrases+numbers on it, still looks pretty cartoon-y (but so does everything atm).

Next step is to get the firing + reload sequence setup.

Misc.

Added a parameter to scale the grenade explosion radius so you kinda see where you’ll get hit:

Its setup via user parameters and HLSL which I havent used in a while (I was fluent in the xna days, but that’s pushing 10+ years ago now)

I might dig into this more just to get my feet wet again with custom shader code. Here’s the blueprint setup I had to do in order to get this working properly

Nothing crazy but I always treat actors as these sacred classes that I want to minimize. Therefore when I wanted the particle system to stay put after the grenade actor destroyed itself I started going down a detachment rabbit hole. But after some googling I realized I should stop being scared of spamming actors for whatever I need. In this case I made an actor that is JUST the grenade explosion holder.

I also started modeling this guy:

Which I wanted to make a “large” version of the patrol bot that has rockets on it, then I wanted to get a laser setup coming out the front. I’m moving towards the idea that each patrol bot has to reload after ANY burst, otherwise the game probably will be way to hard.

Probably will push more on this friday/saturday/sunday to get the new bot in place. I also want to retool the flashbang grenade bots to hold the flashbang in its “hand” as it goes off and reload. No real reason other than I think that will be sillier and give a distinction to the frag grenade bots.

Still need to make more maps, still need to make a higher level meta game, still need to add more audio. Uhhhggg I probably should make a trello board…

Throw em’

Added player grenades

Pretty crude but I’m not going for quality atm, the detonations are very underwhelming, I can clean that up a bit later with a decent burn decal, a sphere effect to show radius and a bigger flash.

I also really want to re-work that icon to be less…..bad? The changes to the blueprint graph were pretty minimal with this one. I only had to add a couple new functions and a new ammo type. The hud is starting to annoy me so I might redo it, but I want to start building out a meta-level game so that I can get more motivation to build the mechanics. I was thinking about doing a cross country trip kinda thing then having each “arena” have a specific mechanic to it, that way the levels can be kinda inconsistent and easier to make.

Still gotta ponder it though.

Stab-y Boy

Added in a small fast stabbing bot that will charge at your feet. I think there’s some collision issues that I gotta get through (you can see me getting pushed back during the gameplay above). But I think I got the hook ups nice enough that it’s not really a huge issue.

Animation is now REALLLY easy for the bots, I can pump out a quick couple keyframes in 20 minutes rather than the 2-3 hours it took before with blender.

I also updated the class structure to be an actual class structure and I can re-use code.

In addition I added some camera shaking when stuff explodes

I think there’s still a question of the directionality of the shake but right now it helps portray an explosion when off next to you. To a lesser extent I have it when you get shot but nothing crazy yet.

Some Gameplay

…I’m gonna quit on the physical hit reactions thing and just make a blendspace. There’s a hackyness to the ue5 physical animations which I seem to be stuck on and I do not want to spend much more time on it.

I’m still happy I ported all of the animations to UE5, that pipeline is much faster and cleaner than adding animations from blender. Now I can start iterating on newer enemy behaviors a bit faster.

New enemy types

After going through the physical animation gambit I added in a new enemy type. A Grenadier, right now they throw frags and flashbangs but I’ve added them into the basic survival gamemode as random spawns. The game feels a bit more like a game but the levels are so not fleshed out that it feels very vacant.

Also the bots are clipping with each other hardcore, not sure whats up there..

Here’s a few minutes of un-edited game-play (Crap quality because I haven’t messed with the wordpress upload limits yet.)

Its all still very rough, and there still no sounds for the frags hitting or detonating so you’ll just randomly die without a reason. Also I’ve hit one or two bugs that make you fly really fast across the map sooo I’ll try fixing that.

In other news I found out the way I was doing bullet hit effects was wrong so I fixed that (world context thing) now you get better hit interactions. My next goal is to clutter up the map above and fix the clipping to try to get everything feeling a bit more alive.