Little Fighter Empire - Forums
[2.2]Programmable AI via scripting - Printable Version

+- Little Fighter Empire - Forums (https://lf-empire.de/forum)
+-- Forum: Little Fighter 2 Zone (https://lf-empire.de/forum/forumdisplay.php?fid=7)
+--- Forum: AI Scripting (https://lf-empire.de/forum/forumdisplay.php?fid=56)
+--- Thread: [2.2]Programmable AI via scripting (/showthread.php?tid=7927)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12


RE: [0.6 Update]Programmable AI via scripting - Azriel - 06-16-2012

@Bender_EX
the source code / dll has does not let you add armor.
it lets you see the values of your target, and based on that you can make your character press controls (up down left right defend jump attack).



Azriel~


RE: [0.6 Update]Programmable AI via scripting - Gad - 06-16-2012

I'm pretty good at algorithms, but I don't get how can I start working with this dll file. Tried to read that, but can anybody explain what do I exactly do with this ddraw.dll and where do i put my script? Step by step, please?


RE: [0.6 Update]Programmable AI via scripting - Azriel - 06-16-2012

quick steps:
1. put the dll in the lf2 folder (i.e. /lf2/ddraw.dll).
2. make a folder "ai" in the lf2 folder (i.e. /lf2/ai)
3. in this ai folder, any [id].chai files ([id] being the id of ur char) will be used as an ai script for ur char, so you'll have 13.chai for an id 13: char.
4. start coding.

tip: if statements can't span multiple lines.



Azriel~


RE: [1.1 Update]Programmable AI via scripting - Boop - 06-19-2012

1.1 Update released. Weeeeeeee


RE: [1.1 Update]Programmable AI via scripting - Rhino.Freak - 06-20-2012

1 dumb question, how do you create a new .chai file?


RE: [1.1 Update]Programmable AI via scripting - Azriel - 06-20-2012

@rhino freak
right click > new > text file. rename it (press f2 when it's selected) to id.chai.
if you can't see the ".txt" extension. go to folder options (press alt when you are in an explorer window > tools > folder options), in the view tab, uncheck the box that says "hide extensions for known file types".

@topic:
global variables would really be nice, though if it doesn't work, i'll probably figure out a way to just have function(self, target, functionArray) (probably rename that to something shorter) and i'll post that up

edit:
don't worry, found a way around it. now i can just pass in self, target, F (functions), V (vars) to every function =D. wonder what the overhead would be like since there'll be so many map accesses
    CHAI_V1_0-Code:
{
clr();
 
var fn1 = fun(FN) {
	print("fn1");
	var f2 = FN["fn2"]; f2(FN);
}
 
var fn2 = fun(FN) {
	print("fn2");
	var f = FN["fn3"]; f(FN);
}
 
var fn3 = fun(FN) {
	print("fn3");
}
 
var FN = ["fn1":fn1, "fn2":fn2, "fn3":fn3];
var f = FN["fn1"]; f(FN); // because FN["fn1"]() doesn't work
 
return 1;
}




Azriel~



RE: [1.1 Update]Programmable AI via scripting - Alblaka - 06-20-2012

Question:
Does the Parser seriously parse through the whole .chai's EVERY frame?
Or is it just parsing renewed whenever detecting a change in file?

OR is the instant adaption to changes in the .chai's a sole (and in that case entirely legit) feature of the DEBUG version only?


RE: [1.1 Update]Programmable AI via scripting - Boop - 06-20-2012

Does the Parser seriously parse through the whole .chai's EVERY frame?
Yes.

Multiple times per frame


RE: [1.1 Update]Programmable AI via scripting - Alblaka - 06-21-2012

Isn't that sort of ludicrously inefficient?


RE: [1.1 Update]Programmable AI via scripting - YinYin - 06-21-2012

still - do you do that to keep the RAM from getting yet more load due to AIs for all ids or for easier editing?
and would we get better performance if you only read in all AI.chais once (for the no console version at least)?