Author Topic: Pokémon Purple  (Read 62849 times)

0 Members and 2 Guests are viewing this topic.

Offline tifreak

  • Project Author
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2708
  • Rating: +82/-3
  • My Kung Fu IS strong...
    • View Profile
    • TI-Freakware
Pokémon Purple
« Reply #105 on: December 15, 2005, 02:02:00 am »
matrices are ok, but they hog memory, so it cuts down on how many maps you can have...
Projects: AOD Series: 75% | FFME: 80% | Pokemon: 18% | RPGSK: 60% | Star Trek: 70% | Star Trek 83+: 40% | TI-City: 5%

Offline Spellshaper

  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1690
  • Rating: +0/-0
  • This is me. Or maybe not.
    • View Profile
Pokémon Purple
« Reply #106 on: December 15, 2005, 04:42:00 am »
not if u store them in prgms :Pblah.gif

hm ok i have 2 admit, I

Offline necro

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1295
  • Rating: +17/-2
  • +3 vaporal mustache
    • View Profile
Pokémon Purple
« Reply #107 on: December 15, 2005, 05:17:00 am »
you could store them as lists/strings and covert them to matrices
I'm like a woot burger with awesome fries


VB.Net, C#, C++, Java, Game Maker

Offline Spellshaper

  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1690
  • Rating: +0/-0
  • This is me. Or maybe not.
    • View Profile
Pokémon Purple
« Reply #108 on: December 15, 2005, 05:31:00 am »
huh? lists are about the same size as matrices...
and strings are uber-slow...
I already store them into prgms...
I once figured out that storing my maps directly as lists/matrices would occupy about 130kB+ <_<dry.gif

Offline tifreak

  • Project Author
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2708
  • Rating: +82/-3
  • My Kung Fu IS strong...
    • View Profile
    • TI-Freakware
Pokémon Purple
« Reply #109 on: December 15, 2005, 09:15:00 am »
Well, strings are about a quarter the size of matrix maps, and the amount of maps that I am gonna have... :crazy:fou.gif

Hopefully I might have some new screenshots of the game up in the next day or so...
Projects: AOD Series: 75% | FFME: 80% | Pokemon: 18% | RPGSK: 60% | Star Trek: 70% | Star Trek 83+: 40% | TI-City: 5%

MathStuf

  • Guest
Pokémon Purple
« Reply #110 on: December 15, 2005, 09:23:00 am »
Maybe you could have a program (ASM) that reads map files and outputs the current map to a matrix? That way all the data would be in one file in compressed format. All you'd need is to know which map to load.

Offline Spellshaper

  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1690
  • Rating: +0/-0
  • This is me. Or maybe not.
    • View Profile
Pokémon Purple
« Reply #111 on: December 15, 2005, 09:30:00 am »
1. is there such a program?
2. if not, who

Offline tifreak

  • Project Author
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2708
  • Rating: +82/-3
  • My Kung Fu IS strong...
    • View Profile
    • TI-Freakware
Pokémon Purple
« Reply #112 on: December 15, 2005, 10:49:00 am »
lol, I wish I had the time to learn asm. I can't say not having the resources are my problem anymore... :Dbiggrin.gif (http://tifreakware.calcgames.org/asmresc.htm if you don't get the joke)

I shall see what happens with the way things are going now, though...
Projects: AOD Series: 75% | FFME: 80% | Pokemon: 18% | RPGSK: 60% | Star Trek: 70% | Star Trek 83+: 40% | TI-City: 5%

MathStuf

  • Guest
Pokémon Purple
« Reply #113 on: December 15, 2005, 11:11:00 am »
Well, that would probaly be the best way to store maps. I'm compressing my maps before releasing the Pok

Offline necro

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1295
  • Rating: +17/-2
  • +3 vaporal mustache
    • View Profile
Pokémon Purple
« Reply #114 on: December 15, 2005, 12:25:00 pm »
Go kerm!
I'm like a woot burger with awesome fries


VB.Net, C#, C++, Java, Game Maker

tenniskid493

  • Guest
Pokémon Purple
« Reply #115 on: December 15, 2005, 01:10:00 pm »
If only I understood how lists and matrixes worked in asm, then I could do it.  Those were the only things I couldn't understand and I eventually gave up trying.

Anyways, I like the idea of storing in programs and then archive them, but if you are running into a space issue, then you may need to stick with strings.

Offline tifreak

  • Project Author
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2708
  • Rating: +82/-3
  • My Kung Fu IS strong...
    • View Profile
    • TI-Freakware
Pokémon Purple
« Reply #116 on: December 16, 2005, 02:48:00 am »
Well, the strings are being stored in programs, and being called on when neccessary, the programs won't exceed 5000 bytes, and there will be one program that identifies which section you are in, unarchives the file, displays the map, and then rearchives the file.

This is the best way I have found to do it thus far...
Projects: AOD Series: 75% | FFME: 80% | Pokemon: 18% | RPGSK: 60% | Star Trek: 70% | Star Trek 83+: 40% | TI-City: 5%

Offline Spellshaper

  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1690
  • Rating: +0/-0
  • This is me. Or maybe not.
    • View Profile
Pokémon Purple
« Reply #117 on: December 16, 2005, 04:46:00 am »
QuoteBegin-tifreak8x+16 December 2005, 14:48-->
QUOTE (tifreak8x @ 16 December 2005, 14:48)
Well, the strings are being stored in programs, and being called on when neccessary, the programs won't exceed 5000 bytes, and there will be one program that identifies which section you are in, unarchives the file, displays the map, and then rearchives the file.

This is the best way I have found to do it thus far...


just one thing: use resource/xLib0.6 to copy the prgm to RAM... :Pblah.gif:Dbiggrin.gif

-> die GarbageCollect die!!!!!!! :gun1:violent.gif

Offline tifreak

  • Project Author
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2708
  • Rating: +82/-3
  • My Kung Fu IS strong...
    • View Profile
    • TI-Freakware
Pokémon Purple
« Reply #118 on: December 16, 2005, 04:51:00 am »
Yeah, I keep sayin I want to use resource, or I need to, but I just never do get motivated enough to grab it. I am lazy you know... :)smile.gif
Projects: AOD Series: 75% | FFME: 80% | Pokemon: 18% | RPGSK: 60% | Star Trek: 70% | Star Trek 83+: 40% | TI-City: 5%

Offline Spellshaper

  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1690
  • Rating: +0/-0
  • This is me. Or maybe not.
    • View Profile
Pokémon Purple
« Reply #119 on: December 16, 2005, 04:59:00 am »
huh O_Oshocked2.gif;

Since I started BM in Summer 2004, I have recoded the whole engine twice... the first time due to my inablility to code good BASIC :Pblah.gif  and to integrate CODEX, and then again for xLib, resource and zapi83 (I need the feature not to update the lcd after doing a rectangle)

and now I