![]() |
| Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact |
| ||||||
This is a discussion on Help Wanted within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; Hi, I'm making a simple and short homebrew game (I haven't chosen the title yet, but it's based on my ...
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 |
|
No longer a community member.
|
Hi, I'm making a simple and short homebrew game (I haven't chosen the title yet, but it's based on my upcoming comic [go check out pspnetworkonline.com if you want to know about it]), and I want some people to help me with it. Since this is my first game, and I am a newbie at coding
, it'll suck a little, but don't fret . Contact me via private message if you want to help me . Here's the list of jobs:GFX and Design: If you can make characters and backgrounds good, I'd be happy to give you the job. If you can make 3d graphics, more better. Music Writer: If you can do the piano, guitar and sing, consider this job. Programmer: To help me code the homebrew; I can't do it alone! Well, that's it. I'll give you the story of the game when you decide a job. EDIT: Did I mention that I can only code Hello Worlds? Eh, heh, heh... But I keep getting errors when making compiling. So I haven't made an EBOOT yet. Here're the things I know: -You need to put in "#include <pspkernel.h>" in every homebrew program. -To print a message in the program, you have to type "pspDebugScreenPrintf " to print it, or shorten it with the "#define" command. -int means integer. -To pause the program after anything, type "sceKernelSleepThread ();" to pause it. That's all I know... sorry. Last edited by Appleseed629; 07-06-2006 at 02:17 PM.. |
|
|
|
|
|
#2 |
![]() ![]() ...in a dream...
|
Uhh... Seems like a request for a coder to make your game, along with some background knowledge about you and howyou have tried to make a Hello World app in C, but cant compile it. Along with some wrong notes. Theres more then 1 way to print a message. int means integer, but that doesnt mean anything really. 'int' keyoword is a data type that returns a whole value in short. Oh and to pause your program, you do not want to use that as it freezes it permanently unless you are using PSPLink with it to 'cancel' it. There are many ways to pause a program, some are:
sceKernelDelayThread(#sec ondsUwant2delay * 1000000); ^ that 'delays' a thread for how ever long you want. Note 1 second of delay = 1,000,000, i think its in microseconds, but not sure there. So just place h owever many seconds you want to delay, as a value before the * operation (overwrite the fake variable) sceDisplayWaitVblank(); This delays for 1/16 of a second (?). Also, im not 100% sure if thats the functions name, since i always get teh LUA and C versions mixed, so search your the doxygen at ps2dev.org for the sceDisplay prototypes. You may also use a loop to pause a program.. SceCtrlData control; do { } while( !control.Buttons & PSP_CTRL_START ); This will pause the program until START is pressed. You could inject your own code in the brackets but still.
__________________
...you'll never know what it's like... spending your whole life in a dream...
Launch a Kitten out of a Cannon and win real cash! Checkout my newly updated site for all my projects (Kitten Cannon, BOXHEAD, Light Cycle 3D) |
|
|
|
|
|
#3 | ||||
![]() ![]() Developer
|
Quote:
Quote:
Also it fires a maximum of 60 times per second (1/60 of a second) assuming that what is being drawn/done before it doesn't slow it down. I would seriously never use this as a method to pause. It's alright saying it 'pauses for 1/60th of a second' but that is not it's intention, and you are assuming your app/game is running at 60FPS... Quote:
__________________
![]() Check out my homebrew & C tutorials at http://insomniac.0x89.org/ Coder formerly known as Insomniac197 Quote:
|
||||
|
|
|
|
|
#5 | |
|
No longer a community member.
|
Okay, here's my Hello World app...
Quote:
Last edited by Appleseed629; 07-07-2006 at 10:07 AM.. |
|
|
|
|
![]() |
| Tags |
| wanted |
| Thread Tools | |
|
|