Exploding Devlog: Panels and Color Picker

I’ve been working on a panel system and a color picker for Exploding Editor.

I decided to start writing in-depth posts for the devlog instead of doing tweets because I can add explanations to things. Also, the last devlog was about what I had done before, but from now on, I’ll be writing about what I’m doing now.

Clean up and Panels

When I first started working on the Exploding Editor, it was just a personal tool, and I wanted it to get it working fast, so the code was not the best it could be. After I decided to release this to the public, I decided to go back and clean things up to save myself time and headaches in the future. While doing that, I also decided to make a major design change to the editor. Compare the two images below:

Here’s how the editor used to look.

Here’s how it looks now. The biggest change is the panels, but there is also space for a toolbar at the top, and it’s now possible to add a toolbar to any panel.

If you’re interested in the programming details, each panel is now in its own dependency injection subcontainer. I follow the facade pattern, so each panel is a facade and other classes have no access to the panel’s internals.

You may also notice in the current image that the textfields are a darker color. I wrote a simple styling system that I can apply to elements. That way, if I decide to change something, I only have to do it in one place. If you do things the regular way in Unity and use prefabs, getting everything to match style can be a real pain, so this is a nice simple solution.

public interface TextInputFieldStyle {
    Color backgroundColor {get;}
    Color textColor {get;}
    Color selectionColor {get;}
}

public static void applyStyle(this TMP_InputField target, TextInputFieldStyle style) {
    target.selectionColor = style.selectionColor;
    target.textComponent.color = style.textColor;
    target.targetGraphic.color = style.backgroundColor;
}

textField.applyStyle(style);

Here’s the gist of how it works.

Color Picker

People will need to change colors of things in the editor, so I needed to have some kind of color picker tool. There are several solutions on the asset store, but there’s no way to try them out or see their code without buying them.

Instead I found a free one and then built my own while using it as a reference when I ran into trouble. It’s not completely done, but here’s how it looks.

Another reason I didn’t want to use any of the asset store solutions is that none of them use TextMesh Pro, the superior text solution in Unity. Exploding Editor supports retina displays, so it will be especially noticable if any text is low resolution.

The color picker doesn’t generate textures for the color box or the hue slider. They are implemented with shaders so they’re fast and use little memory.

Reactive Programming Example

The color picker UI is a great example of the benefits of reactive programming. I think in general not enough people use it, so I thought I’d show how using it can save you a lot of time and make your code lean and clean. The following code is in the ColorSliderView class which is used for each of the RGBA sliders shown in the animation.

public IObservable<ColorSliderView> valueChanged => slider
  .OnValueChangedAsObservable()
  .Select(x => (byte)x)
  .Merge(valueInputField.onValueChangedAsObservable()
    .Where(_ => valueInputField.isFocused)
    .Select(x => x.safelyParsedByte()))
  .Do(x => _value = x)
  .Select(_ => this);

Take a look at this code. It’s generating an IObservable to let observers know when something changes. It automatically combines changes from both the slider and the textfield, and it stores that value before sending the event. It also limits the event for the textfield to make sure it only sends it when the textfield has focus. This is to prevent a stack overflow.

sliders
  .Select(x => x.valueChanged)
  .CombineLatest()
  .Subscribe(_ =>
    picker.color = new Color32(sliders[0].value, sliders[1].value, sliders[2].value, sliders[3].value));

And here’s where the IObservables are subscribed to. Whenever any of the sliders change their value, the function in Subscribe is invoked, and the color picker’s color is updated with the new values.

What’s Next?

There’s a little bit of work left to finish the color picker, and then I have to finish transitioning the rest of the editor to the panel system. I mainly just have the sprites panel and the panels related to tilemapping remaining.

Exploding Devlog #1

I started posting a development log on Twitter. Here’s a consolidated version.

I started posting a development log on Twitter. You can see related tweets by using #ExplodingDevLog. I’ll be posting consolidations of the devlogs on this site as well. Here’s the first one!

Started working on the sprite editor, but all you can do right now is look at a sprite sheet and drag it around. Not too exciting yet.

Added an assets panel that displays all files in the project instead of having a separate sprites panel. Also added very basic sprite slicing. Slices lines are drawn with Unity’s GL class.

Wrote the basics of the ?Exploding Data file format (why is everything exploding with me?). It uses JSON because it’s easy to work with and is human readable. I also set up saving and loading of these files.

Added right click to assets panel to allow simple creation of entities, sprites, and animations. Also got basics of properties panel working.

Added grid overlay for sprite sheets. The cell size can be set in the inspector panel. Benefits of grid-based sheets and how they work with Exploding Editor will be shown later.

2018: Year of the Exploding Rabbit

Improved communication, regular devlogs, and several product releases are just some of the things to expect from ?? in 2018.

The poor  website has been neglected for several months. Let’s get you caught up!

Communication Skills +10

I recently got a community manager, as mentioned in this video, and he has been helping me to plan out a communication strategy that is sustainable and that covers several platforms. We’ve mainly been focusing on Facebook and Twitter, but the website will be getting some ❤️ as well. He’s helping me to make communication a higher priority, so I’m factoring it into how I do things going forward. His name is Jason. Here’s his Twitter.

Exploding Editor

When working on Glitch Strikers, I ended up making a small editor to simplify the development process. The editor kept getting bigger and more advanced as we needed features, and then it got to the point where it seemed good enough that other people could find it useful.

I decided to call it the Exploding Editor and made an itch.io project for it. I’ll distribute it through there as soon as I finish some remaining features and make it more user friendly. We’ll probably do some alphas and betas first. If you’re interested in participating, follow the project. The editor will not be free, but it will be affordable.

Exploding Devlog

I’ve always wanted to do a development log, and it’s finally happening. I’ve been tweeting it out about once a day, starting with the log for Exploding Editor. I’ll be posting consolidated versions of the devlog on this website. There’s also a devlog on itch.io, but that one is only for the editor. The devlog posted on this website is for all ?? projects.

High Level Plan for 2018

The first task is to release the Exploding Editor. This should not take too long. After that, I’ll be finishing up a personal project I’ve been working on and off for several years. The editor is very closely tied to this project and some features were added to the editor just so I could finish it. The personal project is planned to be a free WebGL game. It shares a lot of similarities with Glitch Strikers, but is simpler and will be a good appetizer.

After that, I’ll get back to either Glitch Strikers or the game collection mentioned in this video. We’ll see where things are then and decide what’s best at that time.