Author Archives: Matt Roszak

EBF5 Mobile: Optimization Hell

Hey guys, there’s not been a lot of development news from me, as I’ve been working on super boring stuff. I made some changes to the battle animation system in EBF5 mobile so it would use less memory and stutter a bit less. Does it run better? A little bit. Was it worth the trouble? Probably not – I spent like two whole weeks on it.

At least I now know what kind of optimizations are worth doing when I eventually port my other Flash games to mobile. Getting rid of all filters and unnecessary animations, and using cacheAsBitmap as much as possible, are the main changes that make a huge difference and aren’t very hard to do. But trying to improve memory management to reduce garbage collector stutters is nightmare if a game was not designed with that in mind from the beginning. Hopefully my other games won’t suffer much from this anyway, since they’re not as big as EBF5.

I’m currently playing through EBF5 again and making sure all of the changes work correctly. I’m still changing puzzles and secrets to make them a bit easier for touch controls. Since the player doesn’t have a cursor, there needs to be other visual hints. I’ve ended up putting a lot more effort into this port than I originally planned, so I hope it pays off.

Anyway, I’m almost done and I should have a new beta out in a couple of days. Jump into the EBF Discord if you want to be notified and maybe get an invite.

EBF5: Tough Love Mod

Hey guys, the amount of new content in Feit-Neo’s (aka LightningLaser’s) EBF5 mod is growing. In earlier posts I showed off some of the new status effects and new skills, and this time I’m showing you some of the new weapons in the mod. Each player gets 4 new and fully functional weapons. As you can see, they’re mostly based on weapons that have appeared in various places in the EBF games, but many of them have never been usable. On top of that, a lot of old weapons have been rebalanced too.

It’s not finished yet, but you can try out the mod using the patch files found in the #ebf-mod-archive channel on the EBF Discord. https://discord.com/invite/9NdK6Wh

And you can chat about Mods in the #ebf-mod-discussion channel.

Alternatively, you can wait until the mod is finished, as it’ll be distributed as a Beta Branch of EBF5 on Steam, which would make it very easy to opt-into and install.

EBF5: Smoother Hits

Hey guys, I’m still optimizing EBF5 for mobile. A big bottleneck is when targets in battle get hit – hundreds of lines of code crunch all of the stats, equips, status effects, elemental particle effects, and other variables, and then different animations are played – sometimes for 5 targets at once. This is a lot to happen on one frame, and usually isn’t too slow, but it often triggers garbage collection or throttles your device CPU for a few seconds afterwards to avoid overheating.

So I’ve added two new options to the game to lessen the resources used:

The “Disable Idle Animations” option now also disables “hit”, “big hit”, “evade”, “heal”, and “defend hit” animations, and replaces them with the target just flashing white. It doesn’t even look too bad.

There’s a new option to “Disable Multi-hits”, meaning that attacks that hit multiple times for no good reason, like Fire Storm, Star Blast, or Hyper Beam, now just hit once. This may make gameplay slightly different when it comes to status effects like Morale, but in the end it shouldn’t be very noticeable.

Hopefully those options get the game running smoother for more people.

Also, nobody asked for it, but I added the option to display a grid on the map, making hunting hidden items a bit easier! A lot of the really hidden items have already been made easier to find on mobile (such as adding visual hints where there were none in the PC version).