Search results

  1. C

    GP32 Passing Structs With More Than 1 Dimension

    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...
  2. C

    GP32 I Need Random Values

    Ok, C++ (i use DevKitARM R8).
  3. C

    GP32 I Need Random Values

    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
  4. C

    GP32 #define Command

    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...
  5. C

    Boulder Dash Clone

    Do you know Diamond Caves III ? It's the best one - it is from the original author of Emerald Mines as i know.
  6. C

    Boulder Dash Clone

    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
  7. C

    New: Tobi Drummer 1.0.6 / Homepage

    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...
  8. C

    GP32 Alternative To The Sdk Soundmixing ?

    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
  9. C

    Tobi Drummer - What Do You Want Me To Improve ?

    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
  10. C

    New: Tobi Drummer 1.0.6 / Homepage

    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...
  11. C

    Tobi Drummer - What Do You Want Me To Improve ?

    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...
  12. C

    Tobi Drummer - What Do You Want Me To Improve ?

    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...
  13. C

    GP32 Division Problems / Remainder

    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...
  14. C

    GP32 I Got Devkitarm_r8 (nearly) Running

    hi ! that's it. thanks Greetings Tobias
  15. C

    GP32 I Got Devkitarm_r8 (nearly) Running

    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...
  16. C

    GP32 Can I Make Libraries From .h Files ?

    Hi ! DLL was a wrong example. In my case they dont need to be loaded dynamically. So, how does it work ? Greetinx Tobias
  17. C

    GP32 Can I Make Libraries From .h Files ?

    As i told in my last posting, i created a user interface using devkitadv. Is it possible to compile in order to use it like a library (in windows called .DLL) ? Greetingx Tobias
  18. C

    GP32 What Is Bad About Devkitadv ?

    Hi ! I often hear that devkitadv is not very good. Why do you think so ? Sometimes i thought about changing to something else - to mirko's for example. But using devkitadv, i worked very long on an user-interface (menus, messages, file-requester, onscreen-keyboards etc.). And so i managed to...
  19. C

    GP32 How Can I See How Much Ram Is Free ?

    Hi ! Which function do i need to find out how much RAM is available ? I (still) use DEVKITADV. Greetings Tobias Drumman ;-)
  20. C

    GP32 Old Question: How Many Ticks Are 1 Second ?

    What is the default speed ? 40 or 66 ? Recalculate ? For example Clockspeed x 2 -> Ticks x 2 ? Tobias
Back
Top