CEED wishlist

From CEGUI Wiki - Crazy Eddie's GUI System (Open Source)
Revision as of 15:24, 21 May 2011 by Kulik (Talk | contribs)

Jump to: navigation, search

A wishlist of smaller CEED features that I want implemented but can't get around to do that. Catch me on IRC if you would like to implement any of these.

Recent files (easy)

We already have recent projects (even though it's slightly broken), recent files also makes sense. Probably only for files not opened from the project manager screen.

Auto-saving and restoring in case of crashes (medium)

Currently when things go mighty wrong (SIGSEGV, SIGABRT or such), the editor crashes and all changes are lost. Saving most of the CEGUI files is quite easy and maybe we could create some sort of restore folder inside the project folder and store changes to opened files there (maybe also including the project file). WHen you save a file or choose to discard changes, this tmp file would get deleted. When you open a new file it looks into the tmp to check whether there is a recovery file there, if there is, user is asked if she wants to recover.

Compatibility layers (easy)

Since the editor has API for compatibility layers, adding support for new formats is relatively cheap (the editor is there and works the same no matter the format) as long as you somehow map the "foreign" format to CEGUI's format. The candidates that come to mind are MyGUI imagesets, Gorilla spriteset support (it's already there but needs finishing and polishing) and other imageset formats.

Future candidates include Ogre overlay mapping to CEGUI layout format. My idea is to create a fake looknfeel mimicking Ogre's overlays and map that to Ogre's overlay elements.

note: compatibility layers allow a two-way support (and that's strongly preferred over one-way support to just open the file), that means that you can migrate freely between formats and even edit foreign imageset formats semi-natively.

MetaImageset editor (hard)

GUI to manage meta imageset files, command line tool for compiling them is already done (mic.py) but some sort of easy to use, artist-friendly editor of the meta imageset sources would be very helpful and super easy to do (I labeled this as hard because it's harder than the rest but this is probably the easiest editor in the whole CEED to make).

Auto-save project file when files are changed (easy)

Basically mimicking the behaviour of Eclipse and MSVC (which I think is what people are used to and expect). Right now saving the project has to be done explicitly.

Better image creating in the imageset editor (medium)

Right now it always creates 50x50 image centred around the cursor. It would be nice to have some sort of click and drag image creation for the tool to be more productive and intuitive.

Finish the bitmap previewer / external editor launcher tool (very easy)

At the moment, it just displays the image as it is and offers a "Launch external editor" button that doesn't do anything.