Hi !
I have a struct
struct LMap
{
unsigned short nTile;
unsigned short nState;
}
then i define a variable
struct LMap sLevel1Map[32][32];
and i would like to create a subroutine:
void PlayLevel( :angry: :angry: :angry: )
Now, how do i pass my sLevel1Map to the subroutine. Using...
Hi !
How can i get random values and control the range of them ? Let's say i want random values from 0 to 31 or 7 to 19. Code example ?
Should i use srand or rand !? How do i get almost random values that do not repeat each running of the program ?
Greetings
Tobias
Hi !
How are #define commands handled ? Is it just like copying a text ?
example:
#define INT_X 1+2+3+4
when i have this line:
for (i=0;i<=INT_X;i++) { ... }
would the compiler work like:
1.) for (i=0;i<=1+2+3+4;i++) { ... } or
2.) for (i=0;i<=7;i++) { ... }
My real question: For...
Hi !
I would like to see a boulder-dash clone on the gp32. Is there anyone who would write one ? Here is a clone that is released including source-code:
rocks n diamonds
Greetings
Tobias
It's nice to hear that people that make 'real' music have fun with my program. :) :) :)
If you like really dirty sound, use an 'overdrive' or 'distortion' effect (connect the GP32 to your guitar effect) on Tobi-Drummer. Hear how loud and noisy the BassDrum, Snaredrum and Crash-Cymb get...
Hi !
Can anyone help me how i can get an own soundmixing routine ?
I need the possibility to play sounds in different volume levels and more than 4 channels (8 would be best).
Or is someone working on something like that or has a library i could use ?
Greetings
Tobias
You mean something like these WinAmp-Effects ? It's not planned since it does not fit to the design of the program. Perhaps i'll improve the look of the player one day.
Tobias
A new version of Tobi Drummer (1.0.6) is available. Download it from:
Tobi Drummer Homepage
What's new:
- 50% smaller executable (Compressed FXE)
- Pattern/Track Copy implemented
- Song can be looped (Edit Pattern Queue Menu)
- Patterns are played looped now (Edit Pattern Menu)
- Smaller...
Hi !
- I will try to implement midi-file support (i have a book about the midi-format !)
- A recorder: It's a question of the resolution - how many times in a second should be scanned if the user pressed a key ? If the res. is low, the live-played rhythm will be 'quantized'.
- MP3 playalong...
Hi !
I would like to know from you, what improvements i should make on Tobi-Drummer (V 1.0.x) ?
My Problems and Ideas:
- I work on a pattern/track copy command
- A play-along mode would be possible but i use the standard mixing mode of the SDK that only supports 4 channels - i may think of...
Hi !
I want to write a routine for choose values. Example: Values 0-32 in 4 columns. The only problem is, how to find the remainder and use it in if.
When i want to put 0-32 (33 Values since counted from 0) in 4 columns, each column needs 8.025 (it may be wrong, but its an example) lines. So i...
Hi !
I managed to get devkitarm running after an instruction from a french site.
Now i could compile my project and it runs. Sounds nice ?
But i get no warnings :huh: ! I need reporting of unused variables, signed/unsigned comparison etc.
In my old Makefile i used in devkitadv i had this...