| View previous topic :: View next topic |
| Author |
Message |
frodemed
Joined: 05 Aug 2005 Posts: 8
|
Posted: Fri Dec 16, 2005 8:12 pm Post subject: telnet client and menu screen |
|
|
I am working on a telnet client. My plan is to implement full terminal emulation, but I am not sure if the pspDebugScreenPrintf is sufficient.
Another thing that I am trying to implement is a menu screen to appear by pressing select. And the terminal emulation screen should reappear by exiting the menu. Can anyone explain to me how I can alternate between two screens?
I'm gratefull for any help :) |
|
| Back to top |
|
 |
TyRaNiD
Joined: 18 Jan 2004 Posts: 918
|
Posted: Sat Dec 17, 2005 3:05 am Post subject: |
|
|
| The sdk debug print functions only have the ability to do basic text printing, move the cursor, change background and forground colours etc., more advanced stuff like text scrolling would have to be manually implemented. It is probably fast enough to redraw the screen every frame so just maintain some sort of buffer of text for your screen and change it depending on how you want it to look (i.e. switch to a menu like display when in the menu). |
|
| Back to top |
|
 |
frodemed
Joined: 05 Aug 2005 Posts: 8
|
Posted: Sat Dec 17, 2005 6:22 am Post subject: |
|
|
| TyRaNiD wrote: | | The sdk debug print functions only have the ability to do basic text printing, move the cursor, change background and forground colours etc., more advanced stuff like text scrolling would have to be manually implemented. It is probably fast enough to redraw the screen every frame so just maintain some sort of buffer of text for your screen and change it depending on how you want it to look (i.e. switch to a menu like display when in the menu). |
Ok. thanks I'l try that out. |
|
| Back to top |
|
 |
|