Search found 8 matches

by drpollo
Fri Sep 09, 2005 8:15 am
Forum: PSP Development
Topic: pspDebugScreenGetTextColor()
Replies: 2
Views: 1372

Well, it works, now I'm thinking that if I want to use that functions in my program (I do) and I want others to be able to compile it, they should be included in pspsdk, is this possible?
by drpollo
Fri Sep 09, 2005 2:31 am
Forum: PSP Development
Topic: pspDebugScreenGetTextColor()
Replies: 2
Views: 1372

Well, it seems that it wasn't so difficult, I guess that inserting in scr_printf.c these two functions and its prototypes in pspdebug.h will be enough.

u32 pspDebugScreenGetBackColor()
{
return bg_col;
}

u32 pspDebugScreenGetTextColor()
{
return fg_col;
}
by drpollo
Fri Sep 09, 2005 1:39 am
Forum: PSP Development
Topic: pspDebugScreenGetTextColor()
Replies: 2
Views: 1372

pspDebugScreenGetTextColor()

Hi all,

I've noticed that in pspdebug.h there is a function for setting the text and background color, but the opposite ones are missing.

Is there a way to get the text and background colors of the debug screen? or will I have to wait for a future pspsdk release?

Thanks,
Alberto
by drpollo
Wed Sep 07, 2005 7:51 am
Forum: PSP Development
Topic: anyone working on something similar to curses?
Replies: 1
Views: 927

anyone working on something similar to curses?

Hi,

is anyone working in something similar to a curses library? I mean, I want to use some menus and dialog boxes in a program and I don't want to reinvent the wheel.

Alberto
by drpollo
Tue Sep 06, 2005 8:32 am
Forum: PSP Development
Topic: PSPTed - PSP Text Editor
Replies: 4
Views: 7774

hosted at sourceforge.net

The guys at sourceforge have confirmed the PSPTed project, so now anyone can download the latest version or ask in the forums here: http://sourceforge.net/projects/pspted/ As always, any commentary would be appreciated (even if it's to blame my inexperience coding in C, provided you help me to learn...
by drpollo
Sun Sep 04, 2005 9:51 pm
Forum: PSP Development
Topic: PSPTed - PSP Text Editor
Replies: 4
Views: 7774

I don't think shouldn't be any problem in supporting USB keyboards, as the main program doesn't care where the characters came from. Can you give me a link so I can see which drivers are you talking about and get some background?

Alberto
by drpollo
Sun Sep 04, 2005 3:30 am
Forum: PSP Development
Topic: PSPTed - PSP Text Editor
Replies: 4
Views: 7774

PSPTed - PSP Text Editor

I have coded a simple text editor called PSPTed. Right now supports only the most basic functions, but is a start. You can load/save text files and modify them with some care. The character input is made with the analog pad and trigger buttons. It's in process of being registered in sourceforge. Whi...
by drpollo
Tue Aug 30, 2005 3:40 am
Forum: PSP Development
Topic: python sdk?
Replies: 1
Views: 1211

python sdk?

Only a question, anyone knows about any project for porting python to the psp?