Hacking Need tester for MP3 player

DirtySprite

Member
OP
Newcomer
Joined
Dec 8, 2016
Messages
17
Trophies
0
XP
71
Country
United States
I need someone with a legit PSP and Lua Euphoria to test out something for me. I need to know if this crashes after 1 minute and 17 seconds of music playback on a PSP. Thank you :33

Code:
-- App freezes after 1:17 of playback.

math.randomseed(os.time())

red = Color.new(255,0,0)

System.currentDirectory("ms0:/MUSIC")

dir = System.listDirectory()
   
    repeat
   
        random_file = dir[math.random(#dir)]
       
    until random_file ~= dir[1] and random_file ~= dir[2]
   
song = random_file.name

Mp3.load(song, 0)

oldpad = Controls.read()

while true do

pad = Controls.read()

Mp3.speed(1.0, 0)

screen:clear()

if pad:cross() then

screen:print(10,10,"Working.",red)

Mp3.play(false, 0) --Can be called inside or outside a loop

end

if pad:square() then

screen:print(10,10,"testing.",red)

end

screen:print(10,260,song,red)

screen.waitVblankStart()

screen.flip()

oldpad = pad

end
 

DirtySprite

Member
OP
Newcomer
Joined
Dec 8, 2016
Messages
17
Trophies
0
XP
71
Country
United States
Yeah man. I need someone with a real PSP to test my code. PPSSPP is being janky. It freezes up and crashes at a specific timing when I play a song. If you could find a copy of LuaPlayer Euphoria, make an index.lua, copy paste what I put earlier, and press cross to play a song, it would be awesome :3


If it works then I'll buy a PSP to keep working on it. If not then no. If you can't find LuaPlayer Euphoria I'll edit the post later and add it. Right now I'm at work. I got up late today and rush posted this before going to work :33
 

DirtySprite

Member
OP
Newcomer
Joined
Dec 8, 2016
Messages
17
Trophies
0
XP
71
Country
United States
We're on the same boat buddy :3

iirc you need to put the LuaPlayer Euphoria folder in the GAME folder on the PSP, and it should show on the XMB. I haven't had a PSP in a long time :3
 

kill_liberty

New Member
Newbie
Joined
Dec 31, 2016
Messages
1
Trophies
0
XP
55
Country
United States
Stop using Euphoria, that shit's outdated. Build up on this with OneLua.

Code:
math.randomseed(os.time())

color.loadpalette()

red = color.new(255, 0, 0)

path = "ms0:/MUSIC"

files.cdir(path)  

dir = files.listfiles(path)

random_file = dir[math.random(#dir)] 

song = sound.load(random_file.name)

while true do

buttons.read()

if buttons.cross then

sound.play(song)

end

screen.print(10, 10, "Press X", 0.6, red)

screen.flip()

end
 

gnmmarechal

Well-Known Member
Member
GBAtemp Patron
Joined
Jul 13, 2014
Messages
6,040
Trophies
2
Age
25
Location
https://gs2012.xyz
Website
gs2012.xyz
XP
5,998
Country
Portugal
Stop using Euphoria, that shit's outdated. Build up on this with OneLua.

Code:
math.randomseed(os.time())

color.loadpalette()

red = color.new(255, 0, 0)

path = "ms0:/MUSIC"

files.cdir(path) 

dir = files.listfiles(path)

random_file = dir[math.random(#dir)]

song = sound.load(random_file.name)

while true do

buttons.read()

if buttons.cross then

sound.play(song)

end

screen.print(10, 10, "Press X", 0.6, red)

screen.flip()

end
b-but :(
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • Xdqwerty @ Xdqwerty:
    good night
  • BakerMan @ BakerMan:
    as to you
  • K3Nv2 @ K3Nv2:
    How do you know if the night will be good when you're asleep
  • BakerMan @ BakerMan:
    because i didn't say i was asleep
  • BakerMan @ BakerMan:
    i said i was sleeping...
  • BakerMan @ BakerMan:
    sleeping with uremum
  • K3Nv2 @ K3Nv2:
    Even my mum slept on that uremum
  • TwoSpikedHands @ TwoSpikedHands:
    yall im torn... ive been hacking away at tales of phantasia GBA (the USA version) and have so many documents of reverse engineering i've done
  • TwoSpikedHands @ TwoSpikedHands:
    I just found out that the EU version is better in literally every way, better sound quality, better lighting, and there's even a patch someone made to make the text look nicer
  • TwoSpikedHands @ TwoSpikedHands:
    Do I restart now using what i've learned on the EU version since it's a better overall experience? or do I continue with the US version since that is what ive been using, and if someone decides to play my hack, it would most likely be that version?
  • Sicklyboy @ Sicklyboy:
    @TwoSpikedHands, I'll preface this with the fact that I know nothing about the game, but, I think it depends on what your goals are. Are you trying to make a definitive version of the game? You may want to refocus your efforts on the EU version then. Or, are you trying to make a better US version? In which case, the only way to make a better US version is to keep on plugging away at that one ;)
  • Sicklyboy @ Sicklyboy:
    I'm not familiar with the technicalities of the differences between the two versions, but I'm wondering if at least some of those differences are things that you could port over to the US version in your patch without having to include copyrighted assets from the EU version
  • TwoSpikedHands @ TwoSpikedHands:
    @Sicklyboy I am wanting to fully change the game and bend it to my will lol. I would like to eventually have the ability to add more characters, enemies, even have a completely different story if i wanted. I already have the ability to change the tilemaps in the US version, so I can basically make my own map and warp to it in game - so I'm pretty far into it!
  • TwoSpikedHands @ TwoSpikedHands:
    I really would like to make a hack that I would enjoy playing, and maybe other people would too. swapping to the EU version would also mean my US friends could not legally play it
  • TwoSpikedHands @ TwoSpikedHands:
    I am definitely considering porting over some of the EU features without using the actual ROM itself, tbh that would probably be the best way to go about it... but i'm sad that the voice acting is so.... not good on the US version. May not be a way around that though
  • TwoSpikedHands @ TwoSpikedHands:
    I appreciate the insight!
  • The Real Jdbye @ The Real Jdbye:
    @TwoSpikedHands just switch, all the knowledge you learned still applies and most of the code and assets should be the same anyway
  • The Real Jdbye @ The Real Jdbye:
    and realistically they wouldn't

    be able to play it legally anyway since they need a ROM and they probably don't have the means to dump it themselves
  • The Real Jdbye @ The Real Jdbye:
    why the shit does the shitbox randomly insert newlines in my messages
  • Veho @ Veho:
    It does that when I edit a post.
  • Veho @ Veho:
    It inserts a newline in a random spot.
  • The Real Jdbye @ The Real Jdbye:
    never had that i don't think
  • Karma177 @ Karma177:
    do y'all think having an sd card that has a write speed of 700kb/s is a bad idea?
    trying to restore emunand rn but it's taking ages... (also when I finished the first time hekate decided to delete all my fucking files :wacko:)
  • The Real Jdbye @ The Real Jdbye:
    @Karma177 that sd card is 100% faulty so yes, its a bad idea
  • The Real Jdbye @ The Real Jdbye:
    even the slowest non-sdhc sd cards are a few MB/s
    The Real Jdbye @ The Real Jdbye: even the slowest non-sdhc sd cards are a few MB/s