Search found 642 matches

by Art
Sun Mar 07, 2010 11:55 am
Forum: PSP Development
Topic: "PSP 300X pre-ipl access" is it possible?
Replies: 16
Views: 7673

Hall of shame.
by Art
Sun Jan 31, 2010 6:57 pm
Forum: PSP Lua Player Development
Topic: Shine's Lowser Snake Game
Replies: 4
Views: 6223

by Art
Sun Jan 31, 2010 8:37 am
Forum: PSP Lua Player Development
Topic: Shine's Lowser Snake Game
Replies: 4
Views: 6223

I'm looking to code it for a microcontroller, so I don't get to use linked lists.
I guess this means I use an array of x,y coords for segment positions.
by Art
Sat Jan 30, 2010 10:25 pm
Forum: PSP Lua Player Development
Topic: Shine's Lowser Snake Game
Replies: 4
Views: 6223

I figure this: cell = cellTail while cell ~= cellHead do if cell.x == lastX and cell.y == lastY then gameOver = true break end cell = cell.next end code checking for an end game condition is like a next...for loop. So the game must be keeping an array of coordinates of old snake heads.
by Art
Sat Jan 30, 2010 2:04 pm
Forum: PSP Lua Player Development
Topic: Shine's Lowser Snake Game
Replies: 4
Views: 6223

Shine's Lowser Snake Game

Hi Guys, I'm trying to understand, and recode the way Shine's Snake game works. I have a rough idea how to follow it, but have some questions. How is it determined where the last segment of the snake is (the tail segment that is removed)? Also, pretty much the same question, since the answer to any ...
by Art
Mon Jan 25, 2010 8:08 pm
Forum: PSP Development
Topic: OSK 50 Char Limit?
Replies: 2
Views: 2013

Well thanks for the tip,
I didn't think of that.
I ended up bypassing it for longer messages.
The program first looks for a text file to use,
and opens the OSK if the text file isn't present.
by Art
Sun Jan 24, 2010 7:07 pm
Forum: PSP Development
Topic: OSK 50 Char Limit?
Replies: 2
Views: 2013

OSK 50 Char Limit?

Hi Guys, I built a 144 LED scrolling message display: http://www.youtube.com/watch?v=qFKy60IF3Tg It's message data is compiled by a PSP program that converts a message string input through the OSK to a monochrome bitmap in the correct format to be written to the EEPROM in my LED circuit. The monochr...
by Art
Thu Dec 31, 2009 9:29 am
Forum: PSP Development
Topic: sounds
Replies: 4
Views: 6580

They are .vag files, and need to be converted to .wav I don't know if the sound data is essentialy the same or not, but there were Windows converters used by people who make the custom themes, etc. I don't think the sounds were ever accessed directly on the PSP though. Although I wrote a program tha...
by Art
Wed Dec 30, 2009 9:02 pm
Forum: PSP Development
Topic: Eboot launch help
Replies: 25
Views: 24060

He's a kid who had his PSP taken away from him as punishment.

What do you expect?
by Art
Wed Dec 02, 2009 4:50 pm
Forum: PSP Development
Topic: Wierd Split Purple Screen
Replies: 9
Views: 4700

Like I said, I started from the last source code backup that didn't have the problem
(rather than actually solve it) then started again from there.
I do remember that, at the time, I wasn't doing anything related to graphics/screen drawing to cause the problem, so I was stumped at the time too.
by Art
Wed Dec 02, 2009 2:57 pm
Forum: PSP Development
Topic: Wierd Split Purple Screen
Replies: 9
Views: 4700

Maybe the other thread I've seen was from another JGE user.
Sorry I can't help then.
Good luck.
by Art
Wed Dec 02, 2009 2:15 pm
Forum: PSP Development
Topic: Wierd Split Purple Screen
Replies: 9
Views: 4700

By starting again from the last properly working backup source code.

Maybe the JGE code isn't causing trouble, maybe the JGE engine has the problem.
But the problem def isn't only occuring with JGE programs.
I've seen the same complaint on this forum from someone else before too.
by Art
Wed Dec 02, 2009 1:39 pm
Forum: PSP Development
Topic: Wierd Split Purple Screen
Replies: 9
Views: 4700

Why would you conclude it's JGE? I've had the same issue with GU with my program Road Dog, which was based on McZonk's GU font sample, and the SDK wifi sample. I've also had this problem with Easy Accellerated Image Library (the one that does image rotation) With a little demo of mine called Multime...
by Art
Sat Nov 28, 2009 11:20 pm
Forum: PSP Development
Topic: Can piKEY KEYBOARD DRIVER support a USB keyboard on psp2000!
Replies: 2
Views: 2186

Re: Can piKEY KEYBOARD DRIVER support a USB keyboard on psp2


1. No

and

2. Probably not since all the documentation is already here.
by Art
Tue Oct 13, 2009 10:26 am
Forum: PSP Development
Topic: Text-To-Speech open sources also for Sony PSP?
Replies: 45
Views: 23315

Good to see you got the PSP3000 mic working.
I still would like to see the voice recognition working on the PSP1000,
even if with limited words.
by Art
Thu Oct 01, 2009 2:16 pm
Forum: PSP Development
Topic: Slim extra memory Question
Replies: 3
Views: 2169

Thanks for that.. helpful since I still don't plan on getting one.
by Art
Wed Sep 30, 2009 11:22 am
Forum: PSP Development
Topic: Slim extra memory Question
Replies: 3
Views: 2169

Slim extra memory Question

Hi,
If you set the extra memory flag in the make file to use the slim RAM,
will the program fail to load on a PSP1000 straight away even if the extra RAM was not used?

If not, when will the program fail to load on a PSP1000... when a 40Mb array is defined, or when you go to use it?
by Art
Mon Sep 28, 2009 8:02 pm
Forum: PSP Development
Topic: Questions about Internet Browser
Replies: 15
Views: 5244

The slim PSP has twice the RAM of the Fat though.
by Art
Sun Sep 27, 2009 6:52 pm
Forum: PSP Development
Topic: Dummying PRX Modules [SOLVED]
Replies: 8
Views: 4185

Hi, could I ask what the purpose/project is?
by Art
Thu Sep 24, 2009 11:10 pm
Forum: PSP Development
Topic: 2D point rotation problem
Replies: 4
Views: 2376

Yes it dos the same thing.
That clock has been in LUAplayer from the beginning.
by Art
Thu Sep 24, 2009 10:39 pm
Forum: PSP Development
Topic: Routine works on PC, crashes on PSP.. Why?
Replies: 10
Views: 5107

Well the delay didn't help. It crashes in the same place. Yes it stops ten seconds or so before powering off. I don't think alignment is a problem since it's only dealing with an array of bytes where floats expressed in ascii text are converted to floats expressed as four bytes (using a few float va...
by Art
Thu Sep 24, 2009 1:51 pm
Forum: PSP Development
Topic: Routine works on PC, crashes on PSP.. Why?
Replies: 10
Views: 5107

Thanks for the replies guys.
I have a feeling the length of time spent in a while loop is causing it
because it's crashing when the array is larger, and execution is hanging
around in a while loop longer.

I'll try the delay first up since it seems to fit.
by Art
Wed Sep 23, 2009 4:58 pm
Forum: PSP Development
Topic: Routine works on PC, crashes on PSP.. Why?
Replies: 10
Views: 5107

Routine works on PC, crashes on PSP.. Why?

Hi Guys, I spent a lot of time debugging a routine that runs through files and converts strings to floats, sorting, indexing, and other things. The PSP version runs well for a while on some particular files, and crashes in the same place every time. The same routine running on my PC with identical a...
by Art
Mon Sep 21, 2009 11:58 am
Forum: PSP Development
Topic: GPS Time Lapse Photography Demo
Replies: 0
Views: 1373

GPS Time Lapse Photography Demo

Hi Guys, Here's a nice time lapse photography session done with AVEC GPS connected to a GPS via serial port, and the PSP-300 Go Cam via USB at the same time. Though I might share it as a little demo video: http://www.youtube.com/watch?v=UrahMeju7bY The video is produced by saving one photo frame for...
by Art
Sun Sep 20, 2009 12:30 pm
Forum: PSP Development
Topic: Error loading prx?
Replies: 3
Views: 2344

It worked afterall.. turns out I left 1.50 kernel LED control stuff in there
that prevented it from loading.
by Art
Sun Sep 20, 2009 10:33 am
Forum: PSP Development
Topic: Error loading prx?
Replies: 3
Views: 2344

I'm just using code found in MapThis! which works when I compile that program.
Why any different in mine?
by Art
Sun Sep 20, 2009 9:23 am
Forum: PSP Development
Topic: Error loading prx?
Replies: 3
Views: 2344

Error loading prx?

Hi Guys, I'm trying to use the sio prx from MapThis! to use the serial port in 3.xx. When I modified the code, it crashed and gave me an error. Error - 8002013C .. Google search suggests it means "Library not found". My question is, how does this know where to load the prx from? I tried &q...
by Art
Thu Sep 17, 2009 9:49 am
Forum: PSP Development
Topic: Open Keyboard Project
Replies: 299
Views: 216017

This project has been online for a long while now.. pages and pages of blah blah blah solder this and hack that... All I want is freaking keyboard for my PSP. Can't I just buy this keyboard and install a custom firmware; or have someone make this work for me..? Geez.. F. Great attitude, perhaps you...
by Art
Mon Sep 14, 2009 8:55 am
Forum: PSP Development
Topic: USB GPS Functions!
Replies: 46
Views: 25384

Deniska explains pretty well how to find the data, and types, but here is a link to the source: http://en.pudn.com/downloads100/sourcecode/others/detail409118_en.html You have to join a forum and share source first, but the other links in this thread are dead, and Deniska has lost the code. This is ...
by Art
Sun Sep 13, 2009 8:51 pm
Forum: PSP Development
Topic: [HELP!] INTERFACE FOR A PLAYER
Replies: 6
Views: 2545

It's the c graphics library used in LUAplayer,
you don't need to actually use LUA.