RE: [1.2 Update]Programmable AI via scripting - Alblaka - 06-23-2012
Manythanks for the _type :3
RE: [1.2 Update]Programmable AI via scripting - Azriel - 06-24-2012
self and target are global (yay!), but left(), left(1, 0), left(1) etc. don't work.
i've tried finding what the problem is, but can't seem to get anything going:
CHAI_V1_2-Code:
clr();
print("left_arity: ${left.get_arity()}");
var params = left.get_param_types();
print("size: ${params.size()}");
for (var i = 0; i < params.size(); ++i) {
print("i: ${i}");
var param = params[i].cpp_name();
print("param: ${param}");
}
var fs = left.get_contained_functions();
print("fs.size() : ${fs.size()}");
var f0 = fs[0];
var f1 = fs[1];
print("f0_arity: ${f0.get_arity()}");
print("f1_arity: ${f1.get_arity()}");
|
OUTPUT-Code:
left_arity: -1
size: 1
i: 0
param: class chaiscript::Boxed_Value
fs.size() : 2
f0_arity: 1
f1_arity: 2
|
don't know if that's much help.
f0(); f0(0); don't work.
Azriel~
RE: [1.2 Update]Programmable AI via scripting - Som1Lse - 06-25-2012
Just wanted to give a heads up, on the porting to AngelScript:
It is going rather well, but my computer crashed, and I'm unable to retrieve the data for now.
Will be delayed sadly
RE: [1.2 Update]Programmable AI via scripting - Som1Lse - 06-30-2012
Time for an update:
Presenting version 2.0:
- Now using AngelScript, this means more syntax and more speed.
- Scripts are now compiled. This doesn't mean much, but if you plan on modifying scripts, while you are running LF2, this only works in the debug version.
- You now use preprocessor directives, #include and #if-#endif.
- The script files now have a ".as" extension instead of the previous ".chai" extension.
- Actually useful error messages.
- You can define global, functions, variables and classes, within your scripts. They can help you speed things up.
- Functions are now defined as '<return-type> <function-name>([<parameter-type> <parameter-name>,...]){<function body>};'.
- If a function doesn't return a value, you can use 'void' as a return type.
- It is no longer enough to define variables as 'var <variable-name>[ = <initial-value>]'. You must define them as '<variable-type> <variable-name>[ = <initial-value>]'.
- Classes are defined as '<class-name> {<functions-and-variables>};'.
- Build in types are, void, bool, int8, int16, int/int32, int64, int8, uint16, uint/uint32, uint64, float, double and string.
- up, down, A, J, D now have the same parameters as left and right had.
- There are now two main functions, the ego and the id.
- ego is defined as 'int ego()', and is basically what we had.
- id is defined as 'void id()', and is the most basic AI. You will have to do everything yourself.
- If you define id, the game will not call ego. You can either keep all functionality within id, or call ego from within id.
- When you are using id, you will have to "release" a key, using for example 'J(0,0);'. Otherwise the AI will keep holding/pressing it.
Download: http://www.mediafire.com/?pxd026nqoqgw0
Release, is the version you should use, when you actually play the game. Debug is for when you are writing your code.
The source code is available too. You'll need Visual C++ Express 2010, directX SDK 2007 and AngelScript 2.23.1.
Depending on where you install them you might have to change some of the paths in the project.
AngelScript should be compiled with the same code generation options as the DLL.
RE: [2.0]Programmable AI via scripting - Alblaka - 06-30-2012
Can anyone explain the two parameters for the key-press functions at some point?
RE: [2.0]Programmable AI via scripting - Boop - 06-30-2012
(06-30-2012, 01:49 PM)Alblaka Wrote: Can anyone explain the two parameters for the key-press functions at some point?
What I do is; try all possible combinations until it works like I want it too . Before we had the two inputs and only had A() and stuff, it was doing A(1,0). Then in the basic AI method it'd reset inputs to 0,0 for all the things, and then the method would be called again. Right now since we support rewriting basic ai, we need to allow people to set A(0,0) by them selves. So at the top of all id() (when you are overwriting basic AI) stuff you'd most likely have
Code: // reset all inputs
left(0,0);
right(0,0);
J(0,0);
up(0,0);
down(0,0);
A(0,0);
D(0,0);
If you are using ego() (which was is what we had previously), you only need to worry about left and right so that walking is possible. I think left(1,1) is walking.
RE: [2.0]Programmable AI via scripting - Som1Lse - 06-30-2012
Minor update: 2.1
Added stage_bound and stage_clear global variables.
Download: http://www.mediafire.com/?pxd026nqoqgw0
RE: [2.1]Programmable AI via scripting - mfc - 07-05-2012
(06-08-2012, 06:31 PM)Lord Silva Wrote: Quote:quick steps:
1. put the dll in the lf2 folder (i.e. /lf2/ddraw.dll). done
2. make a folder "ai" in the lf2 folder (i.e. /lf2/ai) done
3. in this ai folder, any [id].as files ([id] being the id of ur char) will be used as an ai script for ur char, so you'll have 13.as for an id 13: char. done
4. start coding. error
I dont know why it isn't happening
New Deep acts just like a template.
My lf2 version is 2.0a
HELP!
this is what i've added to data.txt:
id: 400 type: 0 file: data\deep.dat
in ai folder this is the ai file:
![[Image: 9sq77s.png]](http://i49.tinypic.com/9sq77s.png)
and this is what there is inside file:
{
if(target.D==1){D()}
if(target.up==1){down()}
if(target.down==1){up()}
if(target.left==1&&self.state>2){right()}
else if(target.right==1&&self.state>2){left()}
else if(target.state==2&&target.facing==1){right()}
else if(target.state==2){left()}
else if(self.facing==0&&self.state==2){left()}
else if(self.state==2){right()}
if(target.facing+self.facing>1){right()}
else if(target.facing+self.facing<1){left()}
if(target.J==1){J()}
if(target.A==1){A()}
if(target.DJA==3){DJA()}
else if(target.DuJ==3){DuJ()}
else if(target.DdJ==3){DdJ()}
else if(target.DlJ==3){DrJ()}
else if(target.DrJ==3){DlJ()}
else if(target.DuA==3){DuA()}
else if(target.DdA==3){DdA()}
else if(target.DlA==3){DrA()}
else if(target.DrA==3){DlA()}
return 1
}
EDIT:
VV That worked!
RE: [2.1]Programmable AI via scripting - YinYin - 07-05-2012
(07-05-2012, 10:33 AM)xmfcx Wrote: HELP!
the syntax is a little stricter now that's why the old code won't work
i have not fully grasped all the changes myself
but this version of the code you are trying works:
Code: int ego(){
if(target.D==true){D();}
if(target.up==true){down();}
if(target.down==true){up();}
if(target.left==true&&self.state>2){right();}
else if(target.right==true&&self.state>2){left();}
else if(target.state==2&&target.facing==true){right();}
else if(target.state==2){left();}
else if(self.facing==false&&self.state==2){left();}
else if(self.state==2){right();}
if(target.facing==self.facing){
if(self.facing==true){right(1,0);}
else{left(1,0);}
}
if(target.J==true){J();}
if(target.A==true){A();}
if(target.DJA==3){DJA();}
else if(target.DuJ==3){DuJ();}
else if(target.DdJ==3){DdJ();}
else if(target.DlJ==3){DrJ();}
else if(target.DrJ==3){DlJ();}
else if(target.DuA==3){DuA();}
else if(target.DdA==3){DdA();}
else if(target.DlA==3){DrA();}
else if(target.DrA==3){DlA();}
return 1;
}
the most pressing changes are the introduction of the int ego() function and the void id() function
if you just want to add special moves and leave the basic AI intact then you will need to put your code into the ego function the way i did up there - however this mirroring script would be a better fit for the id function (basic AI - nothing but your code gets executed)
also you will always need ; after any command
and variable types are extremely strict - that's why i had to compare all the boolean ones (0 or 1) with true or false now
quite difficult compared to chai but hopefully i can update my tutorial for easy comprehension (after all this stuff still recompiles at run time so the better performance and new features really make up for the strict syntax)
RE: [2.1]Programmable AI via scripting - Boop - 07-05-2012
There is no need to compare things to be true.
if(target.D==true)
is the same as:
if(target.D)
if you want to see if it's not true then you can use:
if(!target.D)
|