Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ACagliano

Pages: 1 ... 39 40 [41] 42 43 ... 62
601
The Axe Parser Project / Re: Bug Reports
« on: September 14, 2010, 02:50:10 pm »
Ah I see. I guess it's a conflict between both apps, then. Also try to not double-post :P.

I actually meant to delete "I'll try", thus making it not a double post, but forgot. Its done now sooo....

What double post? I have no clue what you are talking about! lol

602
The Axe Parser Project / Re: Bug Reports
« on: September 14, 2010, 02:00:15 pm »
Doesn't seem to. And it doesn't happen with DCS and CalcUtil chaining either. It only happens in large files (seemingly over 1k) and with only CalcUtil by itself.

603
Humour and Jokes / Re: Extreme forum glitch in the News section
« on: September 14, 2010, 01:53:36 pm »
hahaha. thats funny.

604
The Axe Parser Project / Re: Bug Reports
« on: September 14, 2010, 01:46:13 pm »
I'll send Quigbo a direct message about this and direct him to this topic.

605
The Axe Parser Project / Re: Bug Reports
« on: September 14, 2010, 01:40:14 pm »
Quigbo. I have something to report. I don't know if its just an issue with me, but here it is. The application CalcUtil seems to conflict with Axe's error scrolling. With CalcUtil installed, Axe scrolls to the error. I correct it, then go to [2nd] [QUIT], and it crashes. This does not happen when I uninstall CalcUtil, but always happens with it installed.
This happens to me too.

Would that make it an conflict with CalcUtil?

606
The Axe Parser Project / Re: Bug Reports
« on: September 14, 2010, 01:31:23 pm »
Quigbo. I have something to report. I don't know if its just an issue with me, but here it is. The application CalcUtil seems to conflict with Axe's error scrolling. With CalcUtil installed, Axe scrolls to the error. I correct it, then go to [2nd] [QUIT], and it crashes. This does not happen when I uninstall CalcUtil, but always happens with it installed.

607
Axe / Re: Adding Strings
« on: September 14, 2010, 09:18:34 am »
perhaps you should seperate the data in the AppVar with zero's? then you could use the length( command to see how long the nam is, and then add that to a pointer to the current program-name. here is some code which should do it:
Code: [Select]
.READPRGS

GetCalc("apvrDATA")->D->P             .get the pointer to the appvar DATA
"prgm"->Str0ZZ                        .initialize Str0ZZ

While P<{D-2}rr-9                     .check for reaching the end of the AppVar
length(P)->L                          .store the length of the string at P to L, because it will be used more than once
Copy(P,Str0ZZ,L)                      .annex data at current position to Str0ZZ
P+L+1->P                              .add the length of the string at P to P to move P to the start of the next string
.Code to do whatever you want with the program...
End


this code is not tested, use at your own risk :P

I don't know wheter Str0ZZ should be Str09 or not, because I thought only Str00 till Str99 were supported, but I'm not sure about that.


Hey, LordConiupter. Actually the creation of the appvar is being handled by KermM in inline asm. The format of the appvar will length-prepended. For example:


Edit:

I spoke to Kerm Martian. Assume the appvar holds only the name of the program AAA. The data will appear as:

03414141

Where 03 tells you that you are taking the next 3 bytes and 414141 is the three byte representation for AAA.

And so on for every program in the appvar.

608
Axe / Re: Adding Strings
« on: September 13, 2010, 06:22:05 pm »
thanks all.

609
Axe / Adding Strings
« on: September 13, 2010, 11:21:57 am »
Lets say I have data in an appvar that looks like this:

AAA,AA,A,F

and I have a string Str0ZZ that looks like this: "prgm"

and I want to move through the appvar between commas, first from AAA to AA then A then F and each time I do that I want to annex the result to Str0ZZ.

So "prgm" becomes "prgmAAA", a name string pointing to program AAA

How do I do that in Axe?

610
The Axe Parser Project / Re: Features Wishlist
« on: September 09, 2010, 08:01:10 am »
How about support for DCS icons in Axe executables?

611
Axe / Combining 2 AppVars into 1
« on: September 07, 2010, 12:36:26 pm »
I have two appvar, each containing a string of different (or possibly equal) length. Each string contains the names of programs to be searched for, separated by commas.

"appvA"->Str2A
"appvB"->Str2B

I want to combine the two into one, and check for any program names in common between the two, and if so, store it to the combined appvar only once. Any ideas?

612
Axe / Re: A Few Questions
« on: September 02, 2010, 02:42:02 pm »
Program will automatically unarchive it when it opens.

613
Axe / Re: A Few Questions
« on: September 02, 2010, 02:36:54 pm »
im not changing to flash anything with Axe. I'll work in RaM. Last time i inadvertently wrote to flash i almost f***ed over my certificate and actually did wipe an OS sector. Wasn't fun. lol. Thanks for the help.

614
Axe / Re: A Few Questions
« on: September 02, 2010, 02:34:41 pm »
So, can I just read from the appvar's pointer directly?

615
Axe / Re: A Few Questions
« on: September 02, 2010, 02:27:34 pm »
Code: [Select]
"appvBDefs"->Str2A
GetCalc(Str2A)->D
!If D
"AHA,AAHAA,BEEF,BEAT,CRASH,FAIL,HAHA,OFFBY1,PRANK,VIRUS,WINXX,XXX"->Str9Z
length(Str9Z)->V
GetCalc(Str2A,V)->D
conj(Str9Z,D,V)
End

Produces an 80 byte appvar, BDefs. Perfect.
Now, to recall

Code: [Select]
If D
length(D)->V
"0"->Str9Y
conj(D,Str9Y,V)
Disp Str9Y

Displays this: "AHA,AAHAA,BEEF,BEAT,CRASH,FAIL,HAHA,OFFBY1,P...garbage starts here...then

OOPS! Ram Cleared.

Pages: 1 ... 39 40 [41] 42 43 ... 62