Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length

 
Advanced search

1076036 Posts in 44157 Topics- by 36124 Members - Latest Member: Fitzgerald

December 30, 2014, 03:37:28 AM
  Show Posts
Pages: 1 ... 17 18 [19] 20 21 ... 140
361  Developer / Creative / Re: Today I created... on: February 08, 2013, 05:32:44 PM
And then I went on to create a day night cycle


 Coffee
362  Feedback / DevLogs / Re: ANSI Submarine Game on: February 08, 2013, 05:25:44 PM
Perhaps with the bigger maps could come a sort of mission where the objective is to get from A to B.
363  Feedback / DevLogs / Re: STAR ANSI - Banshee Engine game on: February 08, 2013, 04:31:34 PM
When this is done, I'll (probably) make a special public release of the engine to let people play the game.
364  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 08, 2013, 04:09:46 PM
Try using "%" instead of "math.mod" if you're still having any issues with it. Also, the tetris example uses modulo in a few places, you could look off of that. As for fractions, most things do take ints as arguments, but the VM absolutely supports floating point values.
365  Developer / Creative / Re: So what are you working on? on: February 08, 2013, 10:44:39 AM


ANSI Platformer! Yay!
366  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 08, 2013, 10:35:43 AM


edit:




Who will mak gam in Banshee Engine that is similar to Oregon Trail with randomized events.

You could, if you wanted!
367  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 08, 2013, 06:14:42 AM
Unfortunately, that's for writing things from inside Lua and doesn't seem to say anything about using the API to do it.  Concerned
368  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 08, 2013, 05:49:33 AM
I am curious! Do you have the runtime working on other platforms, or is it just windows for now? I don't know when I could get to it, but I would like to try it at some point.

It's written in a language that can compile to Mac OS and Linux as well as Windows, though whether the libraries I'm using would play nicely with them is yet to be seen.
369  Feedback / DevLogs / Re: STAR ANSI - Banshee Engine game on: February 07, 2013, 08:11:09 PM
 Wink

Cannot wait to play this.
370  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 07, 2013, 08:04:52 PM
New version is up! Just like before, Banshee is in closed alpha while the final touches are put on it. If you'd like to get your hands on it, just shoot me a PM.

Quote
1.0.5a
Added "filewriteint", "filereadint": functions exactly the same as "filewritepointer" and "filereadpointer", only meant to prevent things from getting too confusing.
Added "imageptr" and "imageexists".
Fixed "drawstring" being buggy when fed negative coordinates.
Fixed "timerdestroy" and "gettimerlength" not doing what they say on the tin.
Fixed Lua VM not making the string library available.
Fixed image objects not saving and loading as they should.
Finished ANSI Blocks demo.
Renamed "initializesound" to "initsound" and "deinitializesound" to "freesound".
371  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 07, 2013, 07:59:25 PM
Okay. Also a few questions about the image functions:

1. Does drawing an image work like drawing a tile, in that you have to use drawclear() or it doesn't clear the previous location of the drawn image?

2. Is there any transparency so that non-rectangular objects don't have clearly-defined boxes around them? I noticed the note about transparency at the top of the documentation but didn't know if it applied to images.

1. Yes. Also, drawing (255,255,255) onto an isolated portion of the screen would do the exact same thing as clearing it, except only in that part.

2. Yepyep. Index 255 is always transparent. Related: -1 is a different transparency. Where 255 isn't drawn when drawing stuff, -1 isn't drawn when drawing onto stuff. The distinction is weird to articulate, but very important.
372  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 07, 2013, 07:12:30 PM
Functions stored as variables, and tables containing themselves. Perhaps someday I'll figure out how to get those, too, but today is not that day.
373  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 07, 2013, 07:09:20 PM
I don't have to make use of it for ANSI Submarine Game but for future reference how much does saving actually save?

Does it save globally saved variables? Variables saved to an entity? Active maps and entities and their positions? Just the map you're on?

Everything. Except image obects because of a bug, but that's what I'm working to fix right now. Also except for just a couple Lua data types that are an absolute hassle to work with.
374  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 07, 2013, 06:25:06 PM
make it yourself then lummox. it should be doable.
375  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 07, 2013, 05:02:57 PM
376  Developer / Technical / Re: Beautiful fails. on: February 07, 2013, 04:41:23 PM


Huh?
377  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 07, 2013, 01:19:13 PM
another absurdly lengthy tetris gif:

378  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 07, 2013, 12:13:13 PM


such a cute little icon. yes it is, yes it is! d'awwwwww
379  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 07, 2013, 11:39:06 AM
And the update is up! Images should work properly now. Also, that infernal name field is now an optional argument, to hopefully dispel some confusion. As before, Banshee is currently in closed alpha. If you'd like in, shoot me a PM!

Quote
1.0.4a
Added "getentitydatatable" and "getdatatable".
Added "setentitysize", "getentitysize", "setentitywidth", "setentityheight", "getentitywidth", "getentityheight".
Added "getimagesize", "getimagewidth", and "getimageheight".
Added a to the scripts directory "badparsing.lua" which parses *.bad files, with some limitations due to inconvenience as a result of Lua's messy OOP. Added "entitybadtemplate.lua" which reads an entity template from a *.bad file. (NOTE: this is still a work in progress.)
Added "getimages", "getfiles", "getsounds", and "gettimers".
Altered "drawimage" response to an uninitialized image: now it automatically attempts to initialize the image before drawing.
Fixed image functionality, now they can be initiated out of *.bad files and referenced by their name.
Fixed image functionality, now the file path is correctly interpreted.
Removed "getcameraoffsetx" and "getcameraoffsety", which were artifacts of an earlier method of handling the camera.
Renamed "initializeimage" to "initimage" and "deinitializeimage" to "freeimage".
Worked just a bit more on the ansiblocks demo. It's still not quite complete, but it's getting there.
380  Feedback / DevLogs / Re: Banshee Engine : For all your ANSI needs! on: February 07, 2013, 11:02:59 AM
I think it's an engine bug. Give me a short while to sort it out and I'll have an update.

edit: Yeah, that was a pretty stupid bug. It'll be up in just a few minutes.
Pages: 1 ... 17 18 [19] 20 21 ... 140
Theme orange-lt created by panic