Author Topic: The Legend of Zelda: Sacred Pearls (ideas/progress)  (Read 9011 times)

0 Members and 1 Guest are viewing this topic.

Offline Hayleia

  • Programming Absol
  • Coder Of Tomorrow
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3367
  • Rating: +393/-7
    • View Profile
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #15 on: May 08, 2013, 07:17:50 am »
What does "120" mean ?
Well, in 1337, LOL becomes 101 which is 5 in binary. Hence LOL! is 5! which is equal to 120. :P
Ok, 39 for the explanation :p

Seems like you like putting numbers instead of words so I put 39 to mean "thank you" because in Japanese 3 is san and 9 is kyu so it gives "san kyu" ;)
I own: 83+ ; 84+SE ; 76.fr ; CX CAS ; Prizm ; 84+CSE
Sorry if I answer with something that seems unrelated, English is not my primary language and I might not have understood well. Sorry if I make English mistakes too.

click here to know where you got your last +1s

Offline Streetwalrus

  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3821
  • Rating: +80/-8
    • View Profile
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #16 on: May 08, 2013, 01:15:57 pm »
What does "120" mean ?
Well, in 1337, LOL becomes 101 which is 5 in binary. Hence LOL! is 5! which is equal to 120. :P
Ok, 39 for the explanation :p

Seems like you like putting numbers instead of words so I put 39 to mean "thank you" because in Japanese 3 is san and 9 is kyu so it gives "san kyu" ;)
I don't do that for anything else than LOL. ??? I just saw it on urban dictionary and found it kinda fun. :P And yours is nice too. ;)

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #17 on: May 08, 2013, 02:35:53 pm »
120d has been a running gag for a while on Ticalc.org back then too. People kept saying that instead of lol. Then later on Cemetech lol got censored to 0x5.

Anyway not much progress on code since I was kinda injured early in the weekend then got busy shopping for games, but I was debatting about if instead of texturing the floor I should texture the walls and ceiling instead. Due to the way the sand/grass-type floor is drawn, it would be hard to redraw it after using the sword, since it isn't tiled. That isn't a big problem for the rectangle tiling texture, though.

Also note about the Boss sprite on page 1: The reason why it's so fast when moving it around despite being so large is because to move around, the left side is erased and an extra row of 3x3 squares is displayed on the right side, or vice-versa. The middle of the sprite is never refreshed. The only downside of this technique is that the sprite can only move left-right, not up-down.
« Last Edit: May 08, 2013, 03:42:49 pm by DJ Omnimaga »
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline blue_bear_94

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 801
  • Rating: +25/-35
  • Touhou Enthusiast / Former Troll / 68k Programmer
    • View Profile
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #18 on: May 08, 2013, 04:54:10 pm »
120d has been a running gag for a while on Ticalc.org back then too. People kept saying that instead of lol. Then later on Cemetech lol got censored to 0x5.

Anyway not much progress on code since I was kinda injured early in the weekend then got busy shopping for games, but I was debatting about if instead of texturing the floor I should texture the walls and ceiling instead. Due to the way the sand/grass-type floor is drawn, it would be hard to redraw it after using the sword, since it isn't tiled. That isn't a big problem for the rectangle tiling texture, though.

Also note about the Boss sprite on page 1: The reason why it's so fast when moving it around despite being so large is because to move around, the left side is erased and an extra row of 3x3 squares is displayed on the right side, or vice-versa. The middle of the sprite is never refreshed. The only downside of this technique is that the sprite can only move left-right, not up-down.
Fortunately, you could code this way for left-right movement and the ordinary way for up-down movement (if it's fast enough).
Due to dissatisfaction, I will be inactive on Omnimaga until further notice. (?? THP hasn't been much success and there's also the CE. I might possibly be here for a while.)
If you want to implore me to come back, or otherwise contact me, I can be found on GitHub (bluebear94), Twitter (@melranosF_), Reddit (/u/Fluffy8x), or e-mail (if you know my address). As a last resort, send me a PM on Cemetech (bluebear94) or join Touhou Prono (don't be fooled by the name). I've also enabled notifications for PMs on Omnimaga, but I don't advise using that since I might be banned.
Elvyna (Sunrise) 4 5%
TI-84+SE User (2.30 2.55 MP 2.43)
TI-89 Titanium User (3.10)
Casio Prizm User? (1.02)
Bag  東方ぷろの

Offline tr1p1ea

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 647
  • Rating: +110/-0
    • View Profile
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #19 on: May 09, 2013, 12:45:52 am »
Did you say that you had a lib or you needed one?
"My world is Black & White. But if I blink fast enough, I see it in Grayscale."


Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #20 on: May 09, 2013, 01:11:09 am »
120d has been a running gag for a while on Ticalc.org back then too. People kept saying that instead of lol. Then later on Cemetech lol got censored to 0x5.

Anyway not much progress on code since I was kinda injured early in the weekend then got busy shopping for games, but I was debatting about if instead of texturing the floor I should texture the walls and ceiling instead. Due to the way the sand/grass-type floor is drawn, it would be hard to redraw it after using the sword, since it isn't tiled. That isn't a big problem for the rectangle tiling texture, though.

Also note about the Boss sprite on page 1: The reason why it's so fast when moving it around despite being so large is because to move around, the left side is erased and an extra row of 3x3 squares is displayed on the right side, or vice-versa. The middle of the sprite is never refreshed. The only downside of this technique is that the sprite can only move left-right, not up-down.
Fortunately, you could code this way for left-right movement and the ordinary way for up-down movement (if it's fast enough).
Up/down would be possible actually, but the sprite colors would be vertical lines instead of horizontal. If I wanted 4-directional movement to be possible, the sprite would only have 1 color.
Did you say that you had a lib or you needed one?
Calc84maniac sent me a lib a while ago. I asked for one for a while but eventually he made one. Unfortunately it doesn't work in jsTIfied, though.
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline tr1p1ea

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 647
  • Rating: +110/-0
    • View Profile
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #21 on: May 09, 2013, 03:28:52 am »
Does the lib enable 160x240 mode or does it do sprites too?
"My world is Black & White. But if I blink fast enough, I see it in Grayscale."


Offline calc84maniac

  • eZ80 Guru
  • Coder Of Tomorrow
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2912
  • Rating: +471/-17
    • View Profile
    • TI-Boy CE
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #22 on: May 09, 2013, 02:57:35 pm »
Just 160x240 mode and/or scrolling (for now, anyway)
"Most people ask, 'What does a thing do?' Hackers ask, 'What can I make it do?'" - Pablos Holman

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #23 on: May 13, 2013, 12:20:32 am »
The following are just mockups, nothing implemented as is in the game, but I was wondering if you would prefer the smaller hearts to the bigger ones or vice-versa? The issue with large hearts (which use 5 pt-on commands) is that they take so much space in the HUD that even with 9 hearts, everything else is squeezed into a small space, and there is the possibility of a key glitch happening with the large hearts setup (if you decided somehow to grab several dungeon keys at multiple places, but not use them immediately, so you ended up with more than 9 keys). However, would the small hearts just be too small?

Also, below the two images I am talking about, I have attached a picture of what the menu will look like when it's full. At first it was going to be white because there was text right next to items, but that isn't the case anymore. For the item color codes, cyan and green refers to 2nd and ALPHA key colors on the calc, while gray is for support items that aren't assigned to a key. To avoid confusion, I added a colored legend in there. It is possible that dungeon keys will be removed, replaced with standard keys. Of course doing so would cause you to get caught off guard by boss encounters, but I could simply make the dungeons layout so that the official dungeon treasure is located right before the boss room or make the door colored.

Also, it is possible that there might be a map for each dungeon, but that would depend of space. It shouldn't be too hard to create, though, but it would require redrawing a part of the screen afterward.
« Last Edit: May 13, 2013, 12:25:18 am by DJ Omnimaga »
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline Hayleia

  • Programming Absol
  • Coder Of Tomorrow
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3367
  • Rating: +393/-7
    • View Profile
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #24 on: May 13, 2013, 01:58:41 am »
I love that menu :D

As for the hearts, I prefer the small ones because they don't seem to take all the HUD :P
Also, as you said, since the big ones take all the space they might cause problems that would not appear with small ones :)
I own: 83+ ; 84+SE ; 76.fr ; CX CAS ; Prizm ; 84+CSE
Sorry if I answer with something that seems unrelated, English is not my primary language and I might not have understood well. Sorry if I make English mistakes too.

click here to know where you got your last +1s

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #25 on: May 13, 2013, 02:02:17 am »
The only other issue though is that the text is so big compared to small hearts, lol. :P
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline Hayleia

  • Programming Absol
  • Coder Of Tomorrow
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3367
  • Rating: +393/-7
    • View Profile
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #26 on: May 13, 2013, 02:11:36 am »
The only other issue though is that the text is so big compared to small hearts, lol. :P
Yeah, true, but there is nothing you can do about the size of the text (I guess) so to have everything fit in the screen the only thing you can change is the size of the rest, including hearts :)
Maybe you should set a poll so that you have more opinions than mine ? :P

Also, what are those numbers representing ? I think the second one is the number of keys you have but I don't get the other ones.
I own: 83+ ; 84+SE ; 76.fr ; CX CAS ; Prizm ; 84+CSE
Sorry if I answer with something that seems unrelated, English is not my primary language and I might not have understood well. Sorry if I make English mistakes too.

click here to know where you got your last +1s

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #27 on: May 13, 2013, 02:12:39 am »
One of them is rupees and the other are bombs.
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline Hayleia

  • Programming Absol
  • Coder Of Tomorrow
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3367
  • Rating: +393/-7
    • View Profile
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #28 on: May 13, 2013, 02:15:45 am »
Ok.
In fact, I was thinking that if one of those numbers was not "useful to the action", you could put it elsewhere. For example, you don't really need to know how many rupees you have when you are in the middle of a dungeon, but you constantly need to know how many bombs and keys you have, so the number of rupees could be put in the menu for example (if you compress things a bit in the menu :P)
« Last Edit: May 13, 2013, 02:23:40 am by Hayleia »
I own: 83+ ; 84+SE ; 76.fr ; CX CAS ; Prizm ; 84+CSE
Sorry if I answer with something that seems unrelated, English is not my primary language and I might not have understood well. Sorry if I make English mistakes too.

click here to know where you got your last +1s

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: The Legend of Zelda: Sacred Pearls (ideas/progress)
« Reply #29 on: May 13, 2013, 05:00:28 am »
I think I'd go with the smaller hearts. :)