Workin' on the editor

Published March 06, 2015
Advertisement
Progress is picking up again on my 2D RPG game. I never stopped working on the game's engine/editor, but progress was mostly non-visual and slow-moving progress.

The engine uses 'layers' (and 'floors'), and there are different types of layers. The biggest one ofcourse being the Tile layers (temporarily disabled due to a pending refactoring), and I've implemented Backdrop Layers and Decal Layers. There's several other important types of layers I need to implement, but most of them are simple enough I don't expect much complexity. Theres one or two layer types that'll require a decent amount of work, though. unsure.png

Anyway, I got 'backdrops' implemented properly now, and there's alot of cool features in it.

  • First, and most obviously, they can be used as backgrounds. And, since each Backdrop is a separate layer, you can layer multiple backgrounds together if desired - for example, if the upper layer was partially transparent.
  • Second, they're optionally parallaxed, so you can move the Backdrops at different speeds when the player is walking around. This allows for potentially some interesting effects I intend to use to make the game more visually pleasing (light rays when outdoors is one I have in mind).
  • Third, they optionally scroll (and at different speeds), so I can use Backdrops for slow-moving mist or clouds. And if I have different layers of mist moving at slightly different speeds, I think the effect would look rather nice. For the clouds, I was thinking subtle cloud shadows moving over the ground, but they'd need to be really subtle or it'd just be ugly.
  • Fourth, they're animated - again beneficial for mist, but perhaps also for oceans or swamps.

You can also see a Decal Layer present here, which can contain various textures (with masks) that are freely rotated, scaled, or stretched out of shape. Similar to Decals are the Object Layers which, while not yet integrated into the editor interface, almost entirely share the same code as Decals, except they don't allow rotation, and they are sorted with the player by Y-position.

f79b1fa0df.png

([size=2]Pardon the big blue arrows - that's the texture I was using for testing, and not part of the editor interface)

You can also see the minimap working (top-right corner), and alot of other niceties are functioning like zooming in and out, and adding, deleting, and reordering layers. There's also alot of not-implemented functionality. ph34r.png

One big important roadblock that I recently overcame (hopefully for the last time dry.png) was getting my textures and animations w/ metadata retrieved in a stable way. I don't have them all imported yet, and there'll be some manual labor organizing them, but the major roadblock was architectural design problems I was having. Over-engineering or over-simplifying, I was banging my head back and forth between those extremes.

63f6794357.png

I still have some work left to do when it comes to textures (packing them in archives), but that can wait until way later - even after map editing begins, since it doesn't affect the file formats in any way. If real-world performance is fine, it might not even need to be tackled at all until porting to tablets (post-release of PC/Mac/Linux).

It'll still be a ways off before I begin to actually use the editor to create the world, unfortunately. I make very little progress every day - a serious lack of butt-in-chair-productivity. But things are progressing! ohmy.png
6 likes 4 comments

Comments

Ashaman73

But things are progressing!

Progress is all what counts.

You editor looks so clean and professional, respect, my tools are always shabby...ehhmmm... functional

March 06, 2015 05:34 AM
Dragonsoulj

Did you switch to a different set of libraries? Last I recall you were doing Qt and SFML.

March 06, 2015 12:43 PM
Migi0027

The GUI is awesome!

And like Ash said, it's really clean and professional.

March 06, 2015 03:44 PM
Servant of the Lord

Thanks guys!

@Ashaman: Better functional tools and a nearly-finished game, then fancy tools and a mostly non-existent game. smile.png

Looking forward to playing Gnoblins, it's looking fantastic!

Yep, it's still Qt and SFML.

SFML is used for the main editing region and the minimap - everything else is Qt.

March 06, 2015 06:22 PM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement