| View previous topic :: View next topic |
| Author |
Message |
Shine
Joined: 03 Dec 2004 Posts: 728 Location: Germany
|
Posted: Mon Oct 03, 2005 3:41 am Post subject: Lua Player version 0.11 |
|
|
On http://www.luaplayer.org you can get a new version. Changelog:
- Added System.md5sum and filelist.txt debug ouput on startup failure in boot.lua
- changed case sensitivity handling in boot.lua for problems with Windows 98
- now Image.createEmpty accepts 512x512 pixel sizes
- internal image width and height needs not to be the same size
- max image size can be 512x512 now (larger are not allowed with GU blit)
- System.sioInit, sioWrite and sioRead implemented for serial port support
(see http://www.luaplayer.org/sio/readme.html and http://nil.rpc1.org/psp/remote.html
for information about the hardware interface)
- new Timer class and System.sleep function
- fixed timezone bug
- moved Starfield and SIO Echo example to Applications
Last edited by Shine on Thu Oct 27, 2005 9:43 am; edited 1 time in total |
|
| Back to top |
|
 |
Sprak
Joined: 27 Sep 2005 Posts: 7 Location: Stockholm, Sweden
|
Posted: Mon Oct 03, 2005 5:32 am Post subject: |
|
|
| Oooh, can't wait to start fooling around with the serial port! Great update, guys! |
|
| Back to top |
|
 |
Gary13579
Joined: 15 Aug 2005 Posts: 93
|
Posted: Mon Oct 03, 2005 5:39 am Post subject: |
|
|
Awesome new release :)
Any chance of releasing a simple how-to for using the PSP remote that came with it?
I think this may be cool for some tetris like games :) |
|
| Back to top |
|
 |
Wraggster
Joined: 26 Aug 2005 Posts: 121
|
Posted: Mon Oct 03, 2005 5:56 am Post subject: |
|
|
without a shadow of a doubt this has to be the killer release of the year.
you must be extremely proud Shine :)
/me hopes for a Dreamcast port one day _________________ Webmaster of http://www.dcemu.co.uk
DCEMU The Worlds Only Homebrew & Gaming Network of Sites. |
|
| Back to top |
|
 |
booger
Joined: 03 Jul 2005 Posts: 16 Location: El Segundo CA
|
Posted: Mon Oct 03, 2005 10:23 pm Post subject: |
|
|
Hope this isn't too off topic or anything, but the max image size is 512x512? Dang. I had just finished drawing up a game idea that requred a 960x544 image, which the player scrolled around on (4x the size of the psp screen).
Do I have to scrap my idea? Or is there a way to create an image of that size, but only blit a 480x272 area of the image to screen? |
|
| Back to top |
|
 |
Zenurb
Joined: 30 Sep 2005 Posts: 106 Location: United Kingdom
|
Posted: Mon Oct 03, 2005 10:27 pm Post subject: |
|
|
| booger wrote: | Hope this isn't too off topic or anything, but the max image size is 512x512? Dang. I had just finished drawing up a game idea that requred a 960x544 image, which the player scrolled around on (4x the size of the psp screen).
Do I have to scrap my idea? Or is there a way to create an image of that size, but only blit a 480x272 area of the image to screen? |
Why not load the map up as tiles?
Even if none of your map could be reproduced as smaller tiles (e.g. 32x32) you could split your map into several 512x512 files. _________________ Proud Dvorak User
US 1.5 PSP (Original) |
|
| Back to top |
|
 |
LuMo
Joined: 21 Aug 2005 Posts: 410 Location: Austria
|
Posted: Mon Oct 03, 2005 10:30 pm Post subject: |
|
|
i have code on my page which uses 3 500x272px images which are scrolling (you may easily expand the code to add images above/below)
so my width is 1500px, more than you need ;)
loading the images takes some time (gary tested it on psp, i didn't)
greets _________________ "Good artists copy, great artists steal."
Pablo Picasso
go2lumo.com |
|
| Back to top |
|
 |
booger
Joined: 03 Jul 2005 Posts: 16 Location: El Segundo CA
|
Posted: Mon Oct 03, 2005 10:31 pm Post subject: |
|
|
| Zenurb wrote: | | booger wrote: | Hope this isn't too off topic or anything, but the max image size is 512x512? Dang. I had just finished drawing up a game idea that requred a 960x544 image, which the player scrolled around on (4x the size of the psp screen).
Do I have to scrap my idea? Or is there a way to create an image of that size, but only blit a 480x272 area of the image to screen? |
Why not load the map up as tiles?
Even if none of your map could be reproduced as smaller tiles (e.g. 32x32) you could split your map into several 512x512 files. |
That's an option. It would just be so much more elegant to have the larger image size;) I'm afraid the game might be complex enough without having to stitch images together. Don't want to have it running at any slower fps than necessary. I know an extra 4 lines of code isn't much, but every little bit counts. |
|
| Back to top |
|
 |
LuMo
Joined: 21 Aug 2005 Posts: 410 Location: Austria
|
Posted: Mon Oct 03, 2005 10:34 pm Post subject: |
|
|
well my code uses 2 blits, which is the minimum for that job ;)
and its running smooth (and just requires an variable for x-positioning)
(and y if you extend it)
note: you may post the extended version here, then i would upload it (give credits for sure!)
greets _________________ "Good artists copy, great artists steal."
Pablo Picasso
go2lumo.com |
|
| Back to top |
|
 |
booger
Joined: 03 Jul 2005 Posts: 16 Location: El Segundo CA
|
Posted: Mon Oct 03, 2005 10:36 pm Post subject: |
|
|
| LuMo wrote: | well my code uses 2 blits, which is the minimum for that job ;)
and its running smooth (and just requires an variable for x-positioning)
(and y if you extend it)
note: you may post the extended version here, then i would upload it (give credits for sure!)
greets |
Thanks for the offer. I have my own webspace that I'll be uploading my stuff to. Of course, I'll post links. I'm just in the begining stages of laying down the script though. I did a couple test programs to get the hang of LUA. Nothing worth posting though, just some simple image blits and so forth. |
|
| Back to top |
|
 |
haust
Joined: 01 Oct 2005 Posts: 25 Location: France
|
Posted: Thu Oct 06, 2005 2:11 am Post subject: |
|
|
Where can I find a binary version of Lua Player please ??
I don't have the pspsdk installed and don't intend to so I think it would be cool to have a ready-to-use Lua Player. |
|
| Back to top |
|
 |
LuMo
Joined: 21 Aug 2005 Posts: 410 Location: Austria
|
Posted: Thu Oct 06, 2005 2:13 am Post subject: |
|
|
| haust wrote: | Where can I find a binary version of Lua Player please ??
I don't have the pspsdk installed and don't intend to so I think it would be cool to have a ready-to-use Lua Player. |
its already compiled, when you do not load the source ;) _________________ "Good artists copy, great artists steal."
Pablo Picasso
go2lumo.com |
|
| Back to top |
|
 |
haust
Joined: 01 Oct 2005 Posts: 25 Location: France
|
Posted: Thu Oct 06, 2005 3:17 am Post subject: |
|
|
| LuMo wrote: | | its already compiled, when you do not load the source ;) |
Err.... I don't understand. What do you mean by "its already compiled" ?? If so, where is the compiled version of Lua Player ??
I thought that a binary version of Lua Player would be something like an EBOOT.PBP file. |
|
| Back to top |
|
 |
KawaGeo
Joined: 27 Aug 2005 Posts: 191 Location: Calif Mountains
|
Posted: Thu Oct 06, 2005 3:35 am Post subject: |
|
|
Read the first post in this thread. There you'll be able to locate the binaries. _________________ Geo Massar
Retired Engineer |
|
| Back to top |
|
 |
haust
Joined: 01 Oct 2005 Posts: 25 Location: France
|
Posted: Thu Oct 06, 2005 4:04 am Post subject: |
|
|
Ok found it.
Thanks to LuMo and KawaGeo. |
|
| Back to top |
|
 |
|