![]() |
| Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact |
| ||||||
This is a discussion on Need help on a new app, never created before. within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; You guys all know the Bonjour 1.0 program for PSP. I AM MAKING A PSP APP. Well I want to ...
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 |
![]() Enter Custom Title
|
You guys all know the Bonjour 1.0 program for PSP.
I AM MAKING A PSP APP. Well I want to make something like that but I need some serious help, I don't know where to start, I have been reading many lua tutorials and know quite a lot. I am not just someone who wants to make something but doesn't even know how to program. I don't know C, C+, C++. I know a little lua. I am making a sound board of a funny comedy. I have always wanted to make a soundboard of this person but I will not tell anyone who the guy is till this is released. I want to code this somewhat on my own, so if anyone can show me some snippets on loading an MP3 when selected and loading Images for backgrounds in lua that would be great. Thanks guys!
__________________
PSN: TrueDef AIM: TrueDef91 Prestige 7 On COD4 Last edited by Sullivan; 09-27-2007 at 03:36 PM.. |
|
|
|
|
|
#4 |
![]() Enter Custom Title
|
No No, NO. I don't want to learn anything. I already know some programming. I would like some snippets for the things I put in my 1st post. Its a PSP app not a PC app, just to let you guys now... lol
__________________
PSN: TrueDef AIM: TrueDef91 Prestige 7 On COD4 |
|
|
|
|
|
#5 | |
|
Quote:
|
||
|
|
|
|
|
#7 |
![]() ![]() Developer
|
if you wannt to load a background just do:
Code:
background = Image.load("background.jpg")
screen:blit(0, 0, background, false)
end
and for sounds Code:
sound = Sound.load("sound.wav")
pad = Controls.read()
while true do
if pad:cross then
sound:play()
end
end
|
|
|
|
|
|
#8 | |
![]() Enter Custom Title
|
Quote:
__________________
PSN: TrueDef AIM: TrueDef91 Prestige 7 On COD4 |
|
|
|
|
|
|
#9 |
![]() ![]() Developer
|
Wel I believe that eing the Bonjour V1.0 developer I can give you help. I'll send you later some snippets in here, but basically, have a look a the OSLib Library (Old School Library). Most of the graphical things I'm using were done with OSLib.
I can hep you with Lua too, though my kind of speciallity is C. Cheers
__________________
Placo23 Spoiler for Wanna see my Apps?:
Spoiler for Donators:
|
|
|
|
|
|
#10 |
![]() |
Code:
sound = Sound.load("sound.wav")
pad = Controls.read()
while true do
if pad:cross then
sound:play()
end
end
Code:
sound = Sound.load("sound.wav",false)
pad = Controls.read()
while true do
if pad:cross then
sound:play()
end
end
|
|
|
|
|
|
#11 | |
![]() ![]() .info
|
Quote:
Code:
song = Mp3.load("song.mp3")
Mp3.play()
Code:
bg = Image.load("bg.png")
screen:blit(0,0,bg)
__________________
Last edited by Yongobongo; 09-28-2007 at 07:50 PM.. |
|
|
|
|
|
|
#12 |
![]() Enter Custom Title
|
Yes that helps quite a bit, but I have just started learning LUA a couple weeks ago, but its really hard for me to learn TWO languages at the same time. I am currently learning Java in my Computer Science calss in 11th grade. Althought all programing is some what a like, but also in many ways its different, it really confusing, mabye placo could help me out a bit. I am a very talented gfx designer but when it comes to programing an app I am not good.
@Yongobongo: Great work on your newly made XMB Destroyer app, putting it on my psp soon! -= Double Post =- Hey placo, I will tell you all about this project that I want to finish before the end of November. It really cool and I will make many of them, just PM if you want and if you can keep it a secret.
__________________
PSN: TrueDef AIM: TrueDef91 Prestige 7 On COD4 Last edited by Sullivan; 09-28-2007 at 06:07 PM.. Reason: Automerged Doublepost |
|
|
|
![]() |
| Tags |
| app , created |
| Thread Tools | |
|
|