QUOTE (tifreak8x @ 26 November 2005, 17:11) |
Yeah, I really need to look into Resource... |
CODE |
ec1If sub(Str1,T-1,1)n="X"c2 |
QUOTE |
Report bugs/suggestions/praise/worship to http://tifreakware.calcgames.org/forum |
QUOTE (tifreak8x @ 20 January 2006, 14:01) |
Yeah, I understand the concept. :)![]() ![]() As far as I know, Pokemon didn't have that kind of system... |
CODE |
ec1 // F is the flag to check // 1 is returned in S if it's set, 0 otherwise // Save the flag so we don't modify it LFLAG(1+iPart(F/33->G // Move from the left most bit in the flagkey // to the right so that they don't interfere // with the flag we're looking for For(A,33,33-33fPart(F/33),-1 // If the flag is larger than the power, the flag at that value is set 2^A // Subtract that value off of the temporary value G-S2^A->G End c2 |
CODE |
ec1 // If that flag isn't set, set it by adding // the value of that flag within the flagkey LFLAG(1+iPart(F/33))+not(S)2^(33-33fPart(F/33->LFLAG(1+iPart(F/33 c2 |
CODE |
ec1 // If that flag is set, unset it by subtracting // the value of that flag within the flagkey LFLAG(1+iPart(F/33))-S2^(33-33fPart(F/33->LFLAG(1+iPart(F/33 c2 |
CODE |
ec1 // Subtract the flag if it's set, add it if it's not // (2S-1) is -1 if the flag is unset (adds to the flagkey) // (2S-1) is 1 if the flag is set (subtracts from the flagkey) LFLAG(1+iPart(F/33))-(2S-1)2^(33-33fPart(F/33->LFLAG(1+iPart(F/33 c2 |
QUOTE (MathStuf @ 24 January 2006, 21:12) | ||||||||
Or, to save space, find a way to extract bits from a decimal number. 33 flags can be stored in any number up to 2^33 and that takes 18 bytes for storage compared to 44 bytes for a string with the same amount of bytes. I may be able to write a BASIC routine that can test whether a single flag in a decimal number is set or not. If you have enough flags, it will pay off for itself in memory later. Flag Check: c1-->
ec2 -->Set: c1
ec2 -->Unset: c1
ec2 -->Flip: c1
ec2 I've fixed the code to work here (I'm too used to arrays starting at 0 now because of C). I also condensed it a bit. Hope this helps clarify. EDIT: Wow...I messed that up between editing/making new post... |
QUOTE (tifreak8x @ 28 January 2006, 8:51) |
Ok, the code stores an 8 digit number from the get-go in to LFLAG(1, which I guess this is supposed to do? The unset code needs a not( like the set code does, so it works. I am just unsure how this is supposed to slim things down... :( ![]() |
CODE |
ec1If K=25:Then If C=1:Then L-1/->/L prgmYLVL 8/->/C End If C>1:Then If [A](C-1,D)/n=/1:Then Output(C,D," " C-1/->/C End:End:Endc2 |
CODE |
ec1If K=25:Then If C=1:Then L-1/->/L prgmYLVL 8/->/C Else If [A](C-1,D)/n=/1:Then Output(C,D," " C-1/->/C End:End:Endc2 |
QUOTE | ||||||||
Methinks that the intro text displays too slow... But that Post by: tifreak on February 06, 2006, 02:02:00 am ![]() Update: Made attempt at the Continue function, the asm prog that is supposed to check status of variables isn't cooperating with me. This is rather irritating, but maybe I will have some good news tommorrow... Update 2: I think I will scrap the idea of the asm program, and just have a save slot stored. All it will simply do is start you where the New game would send you after the intro... Post by: tifreak on February 07, 2006, 04:26:00 am Post by: DJ Omnimaga on February 07, 2006, 04:47:00 am Post by: kalan_vod on February 07, 2006, 05:41:00 am ![]() ![]() Post by: Krid on February 07, 2006, 06:31:00 am ![]() Post by: kalan_vod on February 07, 2006, 06:35:00 am ![]() Post by: tifreak on February 07, 2006, 07:14:00 am ![]() Post by: kalan_vod on February 07, 2006, 07:29:00 am ![]() Post by: tifreak on February 07, 2006, 07:35:00 am Did you get a chance to try the newer demo? Post by: kalan_vod on February 07, 2006, 08:48:00 am Post by: tifreak on February 07, 2006, 10:25:00 am ![]() ![]() Gonna try to write down all the lists on paper so I can make the save function when I get to the in-game menu tonight... Post by: MathStuf on February 07, 2006, 11:52:00 am Post by: CDI on February 07, 2006, 12:09:00 pm Post by: kalan_vod on February 07, 2006, 12:23:00 pm ![]() Post by: tifreak on February 08, 2006, 02:21:00 am Post by: kalan_vod on February 08, 2006, 04:45:00 am Post by: rivereye on February 08, 2006, 04:54:00 am Post by: kalan_vod on February 08, 2006, 04:58:00 am
?? Can you say that in a different way? I don't understand. Post by: rivereye on February 08, 2006, 05:09:00 am Post by: kalan_vod on February 08, 2006, 05:20:00 am Post by: tifreak on February 08, 2006, 07:23:00 am Post by: rivereye on February 08, 2006, 07:28:00 am Post by: DJ Omnimaga on February 08, 2006, 07:44:00 am ![]() Post by: tifreak on February 08, 2006, 07:46:00 am Post by: kalan_vod on February 08, 2006, 09:06:00 am Post by: Spellshaper on February 08, 2006, 09:14:00 am so I let the chance of an encounter increase a bit with each step... :) ![]() Just pinning my thoughts down here :D ![]() Post by: rivereye on February 08, 2006, 09:26:00 am Post by: Krid on February 08, 2006, 09:39:00 am Post by: tifreak on February 08, 2006, 11:04:00 am ![]() I will basically have it call a sub-program that will check to see what tile is being stepped on, and to see if it needs to check for enemies or not, and then goes about its logic tree... Post by: Radical Pi on February 08, 2006, 11:29:00 am Along with downloading the programs, groups, etc., have a GDB file also, which contains Y= vars, parametric, and polar. All those equations will contain a mere quote, which makes them strings! Example: Y1="Quote Output(1,1,Y1 would print Quote! And best of all, you can use different functions than the current mode! Usage in programs: you know, just set to Seq if you need the graphscreen. Congratulations, you now have 38 string variables. Post by: MathStuf on February 08, 2006, 11:45:00 am 1:20 chance of a battle being started 10 Pokemon/area with decreasing rates of appearance towards the end of the list. I can give the method I'll be using if you need more clarification. Post by: tifreak on February 09, 2006, 02:03:00 am ![]() Post by: MathStuf on February 10, 2006, 02:12:00 pm Post by: tifreak on February 10, 2006, 06:00:00 pm Post by: MathStuf on February 11, 2006, 09:46:00 am Post by: tifreak on February 11, 2006, 01:22:00 pm Post by: MathStuf on February 11, 2006, 01:37:00 pm Post by: tifreak on February 14, 2006, 05:28:00 am Thanks to Kerm Martian, I now have more characters to use to make maps. ^_^ http://www.ticalc.org/archives/files/fileinfo/384/38404.html That is the unedited version, of the program, I created a GUI for it, to make it more user friendly, and if TICalc would ever get off their dead arses and get it loaded... :flame: ![]() Anyways, I have the in-game options menu set up, but I have to code the availability for the Pokedex, since you don't get it right away. What I am working on doing is using 2 variables, and first it checks to see if a certain event has transpired, then will show the options on the screen. One variable will show the start of the words, the 2nd the end of the options. This will make the program fairly dynamic. When I actually get it implemented though, is another story... And... I have been debating whether I want to continue this project, since there is someone makin a port of this game for the 83+ in Flash. I think I will continue for now, since he might not finish his version... Post by: DJ Omnimaga on February 14, 2006, 06:19:00 am ![]() Post by: kalan_vod on February 14, 2006, 06:45:00 am Post by: DJ Omnimaga on February 14, 2006, 07:14:00 am Post by: tifreak on February 14, 2006, 07:57:00 am Post by: tifreak on February 15, 2006, 02:03:00 am ![]() ![]() That is the in game menu. I still haven't done any coding with it though... Post by: DJ Omnimaga on February 15, 2006, 03:20:00 am Post by: kalan_vod on February 15, 2006, 04:08:00 am Post by: tifreak on February 15, 2006, 09:00:00 am As to an animated screenshot... :( ![]() ![]() On the plus side, I spent 10 minutes today, makin the cursor move... :D ![]() Post by: kalan_vod on February 15, 2006, 10:06:00 am Post by: tifreak on February 15, 2006, 11:16:00 am ![]() Post by: kalan_vod on February 15, 2006, 11:27:00 am Post by: tifreak on February 15, 2006, 11:33:00 am ![]() Post by: CDI on February 15, 2006, 11:59:00 am ![]() Post by: tifreak on February 15, 2006, 03:54:00 pm I wish I was more motivated... I only added a few lines of code before getting bored with it... :( ![]() Maybe after making the in-game menu and making it save the base data, I will release a new beta... Post by: CDI on February 16, 2006, 08:53:00 am Post by: tifreak on February 16, 2006, 09:51:00 am ![]() Post by: kalan_vod on February 16, 2006, 12:34:00 pm ![]() *glares at himself....* Post by: tifreak on February 16, 2006, 03:08:00 pm ![]() http://tifreakware.calcgames.org/tifreak8x/main.htm The only links in that that truly works are the AOD links... Anyways, that doesn't even come close to listin all of them, I still have all kinds of site projects, and there is one project that I want to do, once these are done, to work with xLib... :) ![]() Anyways, BOT... I made it so you could access the options menu via the in-game menu. Work slowly continues... Post by: kalan_vod on February 16, 2006, 03:28:00 pm Post by: tifreak on February 17, 2006, 05:59:00 am *Starts counting on fingers, runs out of fingers, and pulls off boots to resume counting...* :P ![]() I want to port all AOD projects to the 86 TI-82: AOD TI-83: AOD Original AOD Graphical AOD2 Star Trek Borg Invasion TI-83+ AOD Original AOD Graphical AOD2 AOD Revenge Final Fantasy Magic's End Pokemon Purple RPG Starter Kit Star Trek 83+ TI-City *One unannounced, will use xLib* TI-86 AOD Original AOD Graphical AOD2 RPG Starter Kit TI-89 AOD Graphical AOD2 AOD R Star Trek This does not include any of my site projects... Post by: kalan_vod on February 17, 2006, 06:51:00 am ![]() ![]() Post by: tifreak on February 17, 2006, 08:12:00 am ![]() Post by: Radical Pi on February 19, 2006, 01:42:00 pm ![]() I'm not sure how it will turn out for you, because i used an 84+SE. http://www.unitedti.org/index.php?act=Attach&type=post&id=553 edit: the relevance is you can use it for maps Post by: tifreak on February 19, 2006, 05:08:00 pm ![]() http://www.ticalc.org/archives/files/fileinfo/384/38404.html It seems that the only thing yours has that ours don't is all the normal characters easily obtainable... Kerm put together the symbols, I made the neat GUI... Edit: Oh yes, I guess I should update on the project a lil... I have a pretty good idea on how to make an NPC move about the screen, though I am not 100% sure it will work. First thing is first though, finish up the small things so you guys can have a new demo... :) ![]() Post by: CDI on February 20, 2006, 04:36:00 am ![]() Post by: kalan_vod on February 20, 2006, 05:22:00 am Post by: tifreak on February 20, 2006, 05:50:00 am ![]() @CDI: Have you tried to make moving NPC's in BASIC? Just curious if you had, then I would like to compare notes... Post by: CDI on February 20, 2006, 05:53:00 am ![]() Post by: tifreak on February 20, 2006, 05:56:00 am ![]() Post by: CDI on February 20, 2006, 05:57:00 am Post by: tifreak on February 20, 2006, 07:15:00 am Post by: Spellshaper on February 20, 2006, 07:24:00 am Post by: Radical Pi on February 20, 2006, 07:29:00 am Post by: tifreak on February 20, 2006, 07:33:00 am ![]() Post by: MathStuf on February 20, 2006, 07:39:00 am Post by: tifreak on February 20, 2006, 07:52:00 am There will be 151 save lists, if someone were to just catch one of each. The save lists, if I were to just combine it, would be massive... I also think I know how I am going to do moves, that is fairly easy, as each move will have a corresponding number. That will make it less hectic. So far, I am thinking about taking off the SP stats, as I never really saw them work with anything in the original game anyways. I will have to have a basic stats, like hp, att, def, evasion, accuracy, and the pp of each move. The others might not make it on there... :) ![]() Stats will be in lists, I was just meaning that it would be cool for self modifying code, as you could just store the stats in a program when not in a battle... Post by: MathStuf on February 21, 2006, 03:36:00 pm Post by: tifreak on February 22, 2006, 02:17:00 am *sigh* This is gonna be so blasted complicated... :( ![]() I am just gonna get the basic list set up, so I can finish up the ingame menu, and make the continue function work. After that, maybe I will continue with the maps... Post by: MathStuf on February 24, 2006, 05:06:00 pm
I'm getting to that point...49k for GUI...yeah... Post by: dragon__lance on February 24, 2006, 05:16:00 pm ![]() Post by: tifreak on February 24, 2006, 05:48:00 pm Post by: necro on February 24, 2006, 06:01:00 pm (48 bytes each)*6= ~288 bytes Pokemon Number (1-155) 3 digits HP(-54125+9999) 4 digits MHP(-54125+9999) 4 digits Atack(-54125+999) 3 digits Def(-54125+999) 3 digits Speed(-54125+999) 3 digits Evasion(-54125+999) 3 digits Level(1-100)[+1] 2 digits move1(-54125+99) 2 digits PP(-54125+99) 2 digits move2(-54125+99) 2 digits PP(-54125+99) 2 digits move3(-54125+99) 2 digits PP(-54125+99) 2 digits move4(-54125+99) 2 digits PP(-54125+99) 2 digits Level(-54125+99) 2 digits ExprenceNEEDED(-54125+99999) 5 digits ~Box Pokemon Stats~ (29 bytes a pokemon)*[ if there are 200 boxes in the pc] ~5800 bytes ------------------------------------------- Pokemon Number (1-155) 3 digits MHP(-54125+9999) [storing auto resisitates] 4 digits Atack(-54125+999) 3 digits Def(-54125+999) 3 digits Speed(-54125+999) 3 digits Evasion(-54125+999) 3 digits Level(1-100)[+1] 2 digits move1(-54125+99)[full pp] 2 digits move2(-54125+99)[full pp] 2 digits move3(-54125+99)[full pp] 2 digits move4(-54125+99)[full pp] 2 digits Level(-54125+99) 2 digits ExprenceNEEDED(-54125+99999) 5 digits ---------------------------------------------------------- ~Individual Pokemon stats~ [155]*=15500 MAX! (WILL ALMOST SURELY BE WAY LOWER) ((even this will easily fit in the ram though)) Name:5-20 bytes ~String based stats~ 30 bytes Pokemon Number (1-155) 3 digits HP growth(.00-.999) [*.1] 3 digits Atack grwth(.00-.999) [*.1] 3 digits Def grwth(.00-.999) [*.1] 3 digits Speed grw(.00-.999) [*.1] 3 digits Evasion growth(.00-.999) [*.1] 3 digits Exprence NEEDED Growth Rate(.00-.999) [*.1] 3 digits Type1(-54125+99) 2 digits Type2(-54125+99) 2 digits Evolve into(-54125+999) 3 digits (if non evolve, make it evolve into itself) Level to evolve (-54125+99) 2 digits (-54125+1 is an evee) Move list consists of: move(-54125+99),level gained (-54125+1 means it is possible for it to gain,0-99),... 5 bytes per move plus a few for the list header other info? (up to ~50) --------------------------------------------- I could make you a loader like this. I already do this in my map loader for zelda {and I tested that part of it out at least and it was flawless}...or you could make your own. Right now, I'm realy busy so if you wnated me to make such a thing there'd be a bit a wait before I'd get it done. Further, there are ways to even further compress data to ridiculous levels. The only thing that you will probably need is a way to store all these lists into a program and then into the flash and all. There are plenty of places to cut corners in system like this, and subsequently save yourself huge sums of memory. Further, all of these numbers are concivable maximums, not minimums...so they will likely be lower any ways (like wether you would controll a pokemon's stat growth to the thousanths place). So, don't dispare and don't say "a long string is evil" because it is actualy way more effecient of a way to do things and is a lot more managable than a ton of lists. Post by: tifreak on February 25, 2006, 02:34:00 am And I know a long string isn't evil. That is what I use for a lot of stuff in my games now... And I wasn't really dispairing, I just wasn't really sure how to procede with this problem... Post by: MathStuf on February 25, 2006, 06:06:00 am QuoteBegin-necro+Feb 25 2006, 0:01-->
--HP can't get to 1000, so you only need up to 999 for that, not 9999. --Evasion isn't a stat. --Experience needed should probably be stored as experience it has and needed should be calculated everytime it is needed (from the experience formulae). --The stats should only be 2 digits for the DV. Nothing else is needed. --Put Stat experience in there (5 digits for each of the 5 stats). QuoteBegin-necro+Feb 25 2006, 0:01
Get rid of the Growth rate you have and use 1 digit to store: 1=Slow 2=Fading 3=Normal 4=Fast And getting rid of the growth stuff and replacing with base stats would be much easier. Post by: kalan_vod on February 25, 2006, 08:42:00 am Post by: necro on February 25, 2006, 04:36:00 pm IOW: you manipulate a sting to store a var into a string (why isn't that a option in basic?) and then you can paste that string into other strings and such, and you read these string chuncks with a expr() of them. If you don't get this, xlib guru (if anyone ever offers to help work on it) will have a section all about this. here are some code examples ::To get a party's pokemon's Def number (pretend the vars I made up are going to be used {48 bytes for each pkmn}) ... "Now that party stats are in string 9, lets get the individual "pokemon's data into string 8 Sub(Str9,48*(which party pokemon-1)+1,48)->Str8 "Lets get def. stat and store it into vairiable A Sub(Str8,8 "which is 4+4+3,plus a string correction of 1",3) expr(Ans)->A ::Store 35 (from D) into a pokemon's defense ... "0123456789->Str1 D/10->C round(C,0 Ans-(C sub(Str1,C,1)->Str2 D-100C->D Ans/1->C round(C,0 Ans-(C Str2+sub(Str1,C,1)->Str2 D-10C->C Str2+sub(Str1,C,1)->Str2 End "Now that your three digits have been stored into string 2 Sub(Str8,1,7)+Str2+Sub(Str8,11,48 "All the data before your stat plus your new stat data plus the "data preceding go together to replace the old stat's data Post by: tifreak on February 26, 2006, 03:12:00 am ![]() I will see about trying that out... Post by: necro on February 26, 2006, 03:09:00 pm Post by: tifreak on February 26, 2006, 04:10:00 pm ![]() |