From the Burrow

TaleSpire Dev Log 350

2022-09-11 18:53:22 +0000

Heya folks!

It’s been a good week for feature work, so let’s get into it.

AOEs

With Ree back from vacation, he has been let loose on making AOEs. He’s made a more low-key variant of the ruler visual for the AOEs that is tintable. So yes, we will have color options for the AOEs on launch (this is landing in Beta in an hour or so). He’s made it so that, as well as the keybinding, you can right-click on a ruler and click a menu option to turn it into an AOE marker. He’s also made it so that the distance/angle indicators only appear when hovering the cursor over the AOE. This keeps the visual noise to a minimum

You can see a little of it in action here (although the visuals are not finished yet)

The latest round of playtesting has revealed a couple of things we don’t like:

  • The pixel picking for the AOE handles works great, but it’s too easy to get handles stuck inside tiles. So we are looking at augmenting the AOE picking with something that feels more forgiving. I’m currently prototyping this and will be continuing tomorrow.

  • For rulers, it feels right to see the handles through walls. For AOEs, it rarely does. We need to change that behavior before release.

Group movement

As for me, I spent most of the last week staring at squiggly lines diagrams like these:

squiggles

My goal has been working on a good way to divide them into simple polygons (see my last dev log for the overview of what we need this for).

I have an approach that is quick and works in many cases…

lasso working

…but not all of them

lasso with hole

The above gif shows two holes between the two polygons. Now, this isn’t uncommon. You are probably very familiar with what happens in graphics applications when you use lasso-select and self-intersect a bunch.

lasso tool in gimp

This behavior sucks for TaleSpire though. Actions like this should have 100% predictable behavior and trying to anticipate self-intersection behavior should be unnecessary.

This means I need to have another go at the polygon decomposition. However, what we have is plenty good enough for continuing with our experiments, so I’m going to leave it for later.

The next step is to write the ear clipping code that creates the mesh from the simple polygon. I’m back working on AOEs for now, but I think I’ll be done there soon.

Wrapping up

Well, that is probably the best place to leave it for now.

Hope you are having a great week. Hope to see you in the next dev-log.

Peace.

Disclaimer: This DevLog is from the perspective of one developer. It doesn’t reflect everything going on with the team

TaleSpire Dev Log 349

2022-09-06 21:28:58 +0000

Heya folks!

With AOEs in Beta, and Ree working on the visuals, I have turned to the next feature we want to ship: group-movement.

A good while back, Ree got this feature pretty much to the finish line. We were just missing a selection method that felt good. For our tests, we used the same rectangle section tool from the building tools.

As much as you lovely folks tried to tell us the selection would be fine, we are still very stubborn about the feel of TaleSpire, and so you’ve had to wait. More recently, however, we think we’ve figured out how to make a pixel-perfect lasso tool that updates in real-time. So we are currently working to find out if it’s correct. The general idea is that we can render the on-screen creatures to the picking buffer, reusing the depth buffer from the scene render. By setting the depth test set to “equals” and turning depth-write off, we early out of all hidden fragments (which helps with performance).

I’ve tested the rendering portion, and it’s doing what I expect, so I’ve turned to the lasso itself. We need to make a mesh that is like this…

lasso

…but filled in. This means triangulating an arbitrary polygon. Luckily there are techniques for this, such as ear clipping (the linked video is ace) but many only work on “simple” polygons. Simple, in this case, means no “holes” and no self-intersection. There are algorithms out there that can handle these complex cases, but after drawing a lot of squiggles in my notebook, I think Ι can make something more efficient[0]. That is my goal for the next few days. After that, it should be mostly copying and modifying existing code to get the results back from the GPU.

That’s all from me for now. I’ll be back when there is more to show :)

Ciao.

Disclaimer: This DevLog is from the perspective of one developer. It doesn’t reflect everything going on with the team

[0] In the game, we are building the polygon incrementally over many frames and don’t have to handle “holes.” So I think a decomposition to simple polygons can also be spread over many frames. After that, the ear clipping approach can be applied.

TaleSpire Dev Log 348

2022-08-31 19:43:26 +0000

Heya folks,

Work on AOE[0] feature has been going well. In fact, if all goes to plan, we should have a Beta in your hands by the weekend.

The goal for the Beta is to test the basic functionality. What we have is as follows:

  • While using a ruler, a GM can press a key[1] to turn that ruler into an AOE
  • Players and GMs can use the Tab key to view the names of the AOEs
  • GMs can right-click on the handles of an AOE or bring up a menu that lets them delete or edit the AOE
  • AOEs are saved in boards.
  • They are also included in published boards.

For now, the visuals of the AOE are exactly the same as the rulers. This will probably change before the feature leaves Beta.

Yesterday was spent making a fast way to place and update the names above the AOEs. The result is a slightly generalized version of the code I use for bookmarks and creatures. Now that I have this, I’d like to go back and try replacing the creature and bookmark implementation with this new version, but that’s a task for another day.

As you can see, the names in the above videos are just dummy values. Today I’ll be adding the code for setting and changing names. I expect that to be a quick job so getting the Beta out by Saturday seems feasible.

I guess we’ll know soon enough!

Until next time,

Peace.

Disclaimer: This DevLog is from the perspective of one developer. It doesn’t reflect everything going on with the team

[0] AOE = area of effect [1] The keybinding is configurable in settings

TaleSpire Dev Log 346

2022-08-16 20:45:15 +0000

Hey again folks,

As planned today, I focussed on saving/loading and getting cone AOE to work correctly.

load working

That worked.

Next up will be getting pixel picking working with the AOE handles. This will take a bit of work to do efficiently. I can’t just reuse the ruler code as that only needed to handle up to sixteen rulers at a time, whereas this should be made to handle thousands efficiently. I know what tools should allow me to do this, so I just need to find the form I like.

I’ll keep you posted :)

Disclaimer: This DevLog is from the perspective of one developer. So it doesn’t reflect everything going on with the team

TaleSpire Dev Log 345

2022-08-16 01:24:17 +0000

Hey folks,

With things calming down after the releases, I’m back working on area-of-effect markers again.

Today has gone well. I’ve been playing around getting the basics working and then focused on the serialization code later in the afternoon.

This is a bit early to show, but you can see something coming together:

aoe wip

Tomorrow I’ll be testing the serialization code and looking at some bug in the cone AOE.

After that, I’ll start on the radial menu stuff. The big task there is hooking it up to the pixel-picking system in an efficient way. I expect that to take a day or so.

Alright, that’s all for tonight.

Ciao

Disclaimer: This DevLog is from the perspective of one developer. So it doesn’t reflect everything going on with the team

TaleSpire Dev Log 344

2022-07-20 01:53:11 +0000

Heya folks. Today I’ve been working on the feature to allow region changing. The basics now work:

login menu

I’m still working on the code that handles what happens for players who are currently in the campaign. It technically works, but it’s ugly right now.

Seeya!

Disclaimer: This DevLog is from the perspective of one developer. So it doesn’t reflect everything going on with the team

TaleSpire Dev Log 343

2022-07-03 23:44:54 +0000

Polymorph beta and Dev stream coming this week

Hey folks,

This week polymorph is going to become available for testing. We are rolling this feature out differently than usual, so I thought it would be good to explain the process and why we are doing it.

Also, now that I have moved house, I finally have decent internet speeds again, so it’s time to bring back developer streams. Details are towards the end of this log.

Polymorph Beta

The short version is that we will be making polymorph available on a beta branch of TaleSpire so that the brave and wreckless can try it out and report bugs before we push it out to everyone else.

We’ve wanted to start doing this as it allows us to catch critical bugs without doing damage to existing creations.

-AND-

We also know that even though they are unsupported, there are folks out there hacking the game to make mods. We’d like to give them a bit of time to update their work to fix anything that isn’t compatible with changes to the game.

To this end, the polymorph beta will be opt-in and take place on an entirely different backend from the one you are currently playing on. And that backend will only last for the duration of the testing. That means that when we release the feature to everyone, the test backend will be shut down, and everything that was on that branch will be cleared.

The process to opt-in will be something like this:

opt-in

  • You will open the Steam beta properties for TaleSpire
  • You’ll enter a password we give out later this week
  • You’ll be given the option to opt into the beta
  • If you do, the game will update, and then you will be on our testing build and backend

Opting out is as simple as setting the beta back to “None.”

We’ll have full instructions and warnings out on the day.

Dev Stream

Dev Steam World Clock

Yup, we are finally doing a dev stream again. We will be live on twitch.tv/bouncyrock this Thursday at 11pm Norway time (click the link above to see the time in your timezone.

This will be a general catchup. As usual, you’ll have the opportunity to fire questions at us too.

That’s all for today

That’s all the news for today, there has been plenty of code and art work going on, but we can save that for another dev-log.

Ciao!

Disclaimer: This DevLog is from the perspective of one developer. So it doesn’t reflect everything going on with the team

TaleSpire Dev Log 342

2022-06-09 11:00:11 +0000

Heya folks,

Last night I pushed a server update containing code needed for polymorph, HeroForge pack grouping, and tracking photon errors. Aside from one hiccup, it all went well.

The last few days have been a mix. My Sunday and Monday were mainly working on moving house stuff. I’ve got a little cabin thing I’m using as an office, so I dug a trench and laid conduit to get internet out there. That is working great, so I’ll need to work out my streaming setup again so we can do some catchups.

I’ve just merged a pile of polymorph work into master. It’s slowly getting more stable, although I still have some pressing bugs to fix before we can push it out.

I’ve got to head out now to get a vaccine for tick-borne encephalitis, as the area I’m in is pretty forest’y. When I get back, I’ll be working on HeroForge. I need to focus on the biggest pain points there so we can get it out of beta status. I’d like to get file hash validation done, and then I’ll see how far I can get on texture rescaling today[0].

The next week or so will still be a bit hectic for me (due to life stuff), but everything is going in a great direction.

See you around.

Disclaimer: This DevLog is from the perspective of one developer. So it doesn’t reflect everything going on with the team

[0] Currently, our assets file sizes are way bigger than they need to be due to working around a Unity bug where their texture quality setting breaks DXT textures. I’m hoping I can rescale the textures so that sizes at each mip level will be a multiple of four (required for DXT) regardless of the texture scaling their quality setting uses.

TaleSpire Dev Log 341

2022-06-03 00:54:39 +0000

Heya folks.

I’ve now packed up my computer, ready for the move, but I did get some stuff done before then.

I’ve made the first pass at including groups in the HeroForge browser.

wip

I’ve merged the polymorph UI branch into my dev branch and am currently working on bugs. Currently, I’m updating the code to push scale along with the morph data so that players get the correct result even if the asset hasn’t finished loading yet.

The scale work required back-end updates to make unique-creatures handle this correctly. That is done and is looking good so far in testing.

I think that’s the interesting stuff for now. I should be set up for work by Monday, so I’ll see you then.

Ciao

Disclaimer: This DevLog is from the perspective of one developer. It doesn’t reflect everything going on with the team

TaleSpire Dev Log 340

2022-04-29 17:47:02 +0000

‘Allo folks!

We’ve been chugging away on fixes and features as usual. With a long weekend coming up, we’ve been working hard to make sure things are as stable as possible for those days.

HeroForge made minis from packs available to TaleSpire yesterday. This rollout was not perfect, and we uncovered some details that had slipped by us. We’ve been chasing down issues that resulted from that, and once we push out a small patch later today, we should have workarounds for the most egregious bugs.

Next week I will be looking to improve the speed of fetching the HeroForge data. Currently, it’s pretty slow for large collections.

While fixing the above and the other TaleSpire bugs, I’ve also started work on “move-rulers.” These will be a feature you can control locally, and the first version looks like this:

move rulers wip

This should be a nice, lightweight complement to tactical rulers.

Not much work remains for the move-rulers feature. I need to add some UI for toggling it on or off and to clean up a few edge cases.

Until next time,

Peace.

Disclaimer: This DevLog is from the perspective of one developer. So it doesn’t reflect everything going on with the team

Mastodon