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 - JosJuice

Pages: 1 ... 76 77 [78] 79 80 ... 98
1156
TI Z80 / Re: Axe Guitar Hero.
« on: December 22, 2010, 03:23:43 am »
EDIT: Might i suggest another method of storage?

Byte 1-2: Note value (either 1 byte or 2 bytes to get full note range)
Byte 3:
   0-1:key
   2-3:difficulty
   4-7:length

difficulty specifies the difficulty at which the note starts appearing.  If the number is 00, it is found in easy through expert.  If it is 01, it would appear in medium, hard, and expert.  If it is 10, hard and expert.  And if 11, only expert.  As for length, i shortened it to 16 max spaces to save space, but if you want to have it longer you could add it in and chose to decrease the note bit length as compensation.
     
This might make note charts harder to make. Notecharts for lower difficulties aren't just versions of the Expert notechart with some notes removed - they're entirely different charts with notes moved around. There are notes that are played only on Easy and not any other difficulties, and other similar situations (on the higher difficulties, the note might be played slightly later/earlier, on a different fret, or something else). The length also needs to be different across difficulties.

1157
TI Z80 / Re: Axe Guitar Hero.
« on: December 21, 2010, 04:32:07 pm »
Yeah, that's kinda what I was thinking of. (and an SP bit ;D) (and Practice Mode section markers ;D) (and... nah, maybe not THAT much extra stuff. :P)

1158
TI Z80 / Re: [Project] 2 Player shooter game.
« on: December 21, 2010, 04:26:13 pm »
Pause works fine as a slow down command :P And this sounds epic!  I have been working recently with linking but it seems my IO cable is going out :(

I have one calculator, so I would never be able to try Linking :(
Me too... I haven't even seen another graphing calculator than mine.

Really?? You never saw another one? Wow, I usually see 10 a day, so I guess I'm quite lucky :D
I'm still in what we call "grundskola" here in Sweden. It's the school you're in when you're 7-15 years old. All we have are TI-106s... And my own calculator, of course.

1159
TI Z80 / Re: Axe Guitar Hero.
« on: December 21, 2010, 04:24:23 pm »
The actual GH games are storing four different gameplay "note charts" for each song - Easy, Medium, Hard, and Expert. The sound is then played back from multiple audio files. Of course, we can't fit audio files on-calc. Maybe it would be possible for you to always play notes (sound) from the Expert track, but play the notes (gameplay) from the track corresponding to the difficulty the user selected? Or would that be too large? (I'm assuming that you are currently storing gameplay notes and sound notes in the same place... If you aren't, just continue using the sound notes one for playing sound.)

Storing separate notecharts for the lower difficulties makes gameplay feel more musical, because the notes aren't just arbitrarily reduced. I've worked a little bit on making GH/RB-style notecharts in the past, so I would be happy to help with that.

1160
TI Z80 / Re: [Project] 2 Player shooter game.
« on: December 21, 2010, 04:17:36 pm »
Pause works fine as a slow down command :P And this sounds epic!  I have been working recently with linking but it seems my IO cable is going out :(

I have one calculator, so I would never be able to try Linking :(
Me too... I haven't even seen another graphing calculator than mine.

1161
TI Z80 / Re: Axe Guitar Hero.
« on: December 21, 2010, 03:59:08 pm »
basically you can miss some notes
Music notes can play when there are no gameplay notes.

EDIT: ninja'd D:

1162
Art / Re: Need 16x16 Pokémon sprites...
« on: December 21, 2010, 02:38:57 pm »
Indeed, same here. I just wish we had some more spriters, since spriting is something needed for game creation. D:
Yeah... Sprites were definitely my largest problem with making PC games, because of the sizes and colors. That, and sound/music...

1163
TI-BASIC / Re: Using asm( inside a program?
« on: December 21, 2010, 02:37:23 pm »
Does this means a BASIC game using Omnicalc's ExecAsm command would not work in DCS? O.O
It would work in DCS. I was just a bit confused, since real( is used by xLib, and xLib doesn't support ExecAsm( (but Omnicalc does).

1164
TI-BASIC / Re: Using asm( inside a program?
« on: December 21, 2010, 02:28:07 pm »
I tend to confuse det( and identity(... D:

1165
TI-BASIC / Re: Using asm( inside a program?
« on: December 21, 2010, 02:23:13 pm »
I swear I posted in here, or maybe it was a different topic. Asm(Hex would only work in Axe. In Doors CS it would be the ExecAsm( command (I forgot the real(number, equivalent).
Err... Isn't ExecAsm( used with identity(? real( is for xLib, and xLib doesn't have ExecAsm( - Celtic III has...
Or do you mean the Omnicalc real(?

1166
General Calculator Help / Re: WFRNG source code
« on: December 21, 2010, 10:44:41 am »
The secret project is going to be very related to WFRNG, but it's not just a port. (I have actually written a port of it already, but that's irrelevant...)

Are we going to lose The Game when it's announced?

EDIT: I lost  <_<
No... Unless you strongly associate WFRNG with The Game and lose whenever you think of WFRNG.
x.x wrong one x.x i hope you can download another one
VTI emulates the 86, just download a ROM somewhere
Thank you! I've managed to set up emulation now. However, I'll have to change a few things in my project due to what the source code really is like. Running the original version of WFRNG was quite different from the versions I was used to, and I'm going to study the inner workings of WFRNG more. Nick decided to overuse Goto when writing it, so it might take longer than I expected...

In case anyone else wants it, here's the source code.
Code: [Select]
:Lbl A
:ClLCD
:Disp "Nick Disabato's","/<-3R33+ Number","Guessing Program","","Choose a number","from 1-30"
:Lbl P
:Prompt A
:Lbl B
:If A>30 or A<1
:Then
:Disp "Out of range!"
:Goto P
:Else
:Goto C
:End
:Lbl C
:ClLCD
:randInt(1,30)→B
:ClLCD
:Lbl D
:If A≠B
:Then
:Disp "No, that's not it!"
:Prompt A
:If A>30 or A<1
:Then
:Disp "Out of range!"
:Goto D
:Else
:Goto D
:End
:Else
:Disp "YES!","Nick's ticalc.org","password is","**********"
:Pause
:ClLCD
:End
:Stop

1167
General Calculator Help / Re: WFRNG source code
« on: December 21, 2010, 09:17:18 am »
The ticalc.org file description for TiEmu says that it only supports 89 (Titanium), 92(+) and Voyage 200. Are you sure it supports 86?

1168
TI Z80 / Re: [Project] 2 Player shooter game.
« on: December 21, 2010, 04:38:24 am »
I believe Kerm used PindurTI.

1169
Axe / Re: How to program in Axe?
« on: December 20, 2010, 03:51:47 pm »
I would like to try my hand at programming in Axe, but I don't know precisely how to go about doing this. Anyone willing to give me a hand?

8. You should set your options to the following:

Backup: Auto-Backup;
Shell: No-Shell;
Lowercase: ON.



use ion.
It can be ran through mirage or asm(
I thought Asm( only supports no-stub... (the "no shell" option in Axe)

1170
TI Z80 / Re: The Axe Files RPG
« on: December 20, 2010, 10:05:53 am »
Yay, an omni-related game ;D


Will it make us lose the game?

Pages: 1 ... 76 77 [78] 79 80 ... 98