Page 2 of 2

Re: Avalon.

Posted: Fri Oct 23, 2009 11:09 pm
by CR4SH3D
nice work! i was going to work on a similar project but i have a question. recently trying to use just 1 timer i think doesnt work very well since it seems to slow down depending on the processor use

the way id have a FF style battle time system would be for each entity in the battle to have its own timer (set to characters speed) how would you do this in order to not rinse the CPU and actually have each incrementing simultaneously (or to similar effect?)

Re: Avalon.

Posted: Fri Oct 23, 2009 11:38 pm
by napco
It shouldn't be difficult. I've made it with RPGMaker 2000 on a 512MB RAM computer with windows95... And it run at full speed. The trick is writing a good main loop:

Code: Select all

increase battlers atb by their speed
for each battler
        if battler atb > 10000 then
                perform battler turn
                reset battler atb
        end
end
or something like this. (as you see it isn't written in Lua ^^)

Re: Avalon.

Posted: Sun Oct 25, 2009 11:16 pm
by Sardtok
I would usually count down a timer and check for if it reaches 0 (timeleft <= 0), but that's just a question of semantics.

Re: Avalon.

Posted: Tue Oct 27, 2009 4:52 pm
by Avalon
I have a perfectly working ATB system implemented at the moment, with no noticeable change to performance. :)

More screenies tomorrow, and perhaps a demo by the end of the week. o/

Re: Avalon.

Posted: Sat Nov 07, 2009 7:35 pm
by Avalon
Person wrote:This is great work! I just so happen to love J-RPGs and think that this project is great step forward for Löve. Does this engine do overworld maps? What is the magic system like? And can it do (although I totally expect a no) mode 7? ;)
Following a rewrite of the engine, it can now quite happily do mode 7, amongst a number of other amazing things. :)

Re: Avalon.

Posted: Sat Nov 07, 2009 11:34 pm
by napco
When are you going to release a demo? I'm very curious! ^^ I hope you'll release also a small game with the engine!

Re: Avalon.

Posted: Sun Nov 08, 2009 8:20 am
by Avalon
napco wrote:When are you going to release a demo? I'm very curious! ^^ I hope you'll release also a small game with the engine!
Hopefully today. :)

Re: Avalon.

Posted: Sun Dec 13, 2009 4:52 pm
by Avalon
Just so you know, a prototype game with the system is now complete - and will be released on 17/12/09 for those of you who are interested. :)

Re: Avalon.

Posted: Sun Dec 13, 2009 4:56 pm
by Avalon
Here's a screenshot from something else I've been working on, a "random tactical RPG engine".

http://bit.ly/50GS5R

Image

Re: Avalon.

Posted: Sun Dec 13, 2009 10:28 pm
by napco
Great! 17/12... I'm looking forward to it!!