UnderwareDESIGN

PlayBASIC => Show Case => Topic started by: bmorris on June 01, 2014, 05:35:20 AM

Title: Creeping Angels Level Editor
Post by: bmorris on June 01, 2014, 05:35:20 AM
I've finally got round to making a level editor for my puzzle game Creeping Angels, which I'll be uploading on GameJolt soon. If anyone wants to try it out and give any comments or suggestions before then, I'd be grateful.

Whereas in the previous version, the (25) levels were embedded in the code, now they're read in from a TXT file, and you can add new files. The editor itself uses the keyboard exclusively rather than the mouse, because the mouse pointer is disabled for fullscreen mode (why is this, btw?) It's possible to cause trouble by mis-editing the TXT files directly, but I didn't think it was worth the effort of tackling this. I suppose I could use the DAT rather than the TXT extension to curtail direct editing, if this proves to be problematic (which I don't think it will).
Title: Re: Creeping Angels Level Editor
Post by: kevin on June 01, 2014, 06:37:00 AM
Quotebecause the mouse pointer is disabled for fullscreen mode (why is this, btw?)

PlayBASIC doesn't render a mouse pointer in either mode actually.  If you need one, you draw it.

DrawImage (https://playbasic.com/help.php?page=IMAGES.DRAWIMAGE) MousePointerImage,MouseX(),MouseY(),true
Title: Re: Creeping Angels Level Editor
Post by: cybermind on June 01, 2014, 09:00:36 AM
Very nice game :-)
Title: Re: Creeping Angels Level Editor
Post by: bmorris on June 01, 2014, 12:45:35 PM
Thanks, Cyber. If you only want to play and aren't interested in designing levels, you'll find the standard EXE slightly simpler and easier to use. It can be found later in this subforum, or on GameJolt.
Title: Re: Creeping Angels Level Editor
Post by: cybermind on June 01, 2014, 02:54:46 PM
I actually did not try the level designer :-P