|
|
|
|
|||
|
|
|
#2
|
||||
|
||||
|
- Image rotation & alpha altering
- io.lines fix -> read each line, including the last one - screen.drawline fix -> make last parameter work - file io: read directories I think there is a lot more to change that I don't remember now
__________________
Zen X-Fi2 Apps: Notee-fi (notepad) | TicTacToe | Mahjongg http://www.starfare.eu/ - a free real-time strategy game. |
|
#3
|
||||
|
||||
|
How did this get stickied so fast? Oh you're a mod, I see. I don't own the xfi but from what I've heard it seems like there's certain lua libraries everyone wants imported, like some 3d engine thing. I think it might be a good idea for them to support sound files for apps in formats other than 1411 wav-pcm, because if someone wanted to have a big selection of background music for a game or something, they could use smaller files and eliminate the requirement of having a 500mb app.
__________________
Cowon S9 32GB > HiFiMan RE0 (RIP) | Sansa Clip+ 16GB (Rockbox) > Soundmagic PL20 If you have problems, try MSC mode, then google.com |
|
#4
|
||||
|
||||
|
Quote:
Quote:
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#5
|
|||
|
|||
|
The addition of the C and Auxillary libraries in their entirety.
The addition of the Lua-GD library. Oh, and a fix for the drawpixel x,y < 0 crash error. Last edited by Tetrajak; 03-11-2010 at 10:54 PM. |
|
#6
|
|||
|
|||
|
I would like to see at least some of these features implemented.
Messages about change of state: - control.isGoingToSleep() - control.isShutingDown() or at least do not allow player to freeze while left unatended for some time. More control over screenbuffer - screen.getPixel(x, y) Ability to make images on runtime - image.create(width, height, data{}) |
|
#7
|
|||
|
|||
|
-Image creation from screen(eg screen shot)
-Image.Save() -More memory available for the lua stack -control.read(1,<ms until timeout>)
__________________
Only ONE more functions in the Wiki need addressing! Zen X-Fi2 LUA Wiki Want to protect your applications? Click Here! Tower Defense Thread Zen Lock - Protect Your Zen! |
|
#8
|
|||
|
|||
|
-support for either animated gif or animated png would be useful.
i have been testing some things with screen.update() and if you only display or update the screen once every 33ms (30 fps) then you can get huge performance increases, so... -screen.update() automatically check to see if a frame has been displayed in the last 33ms before trying to display a new one. |
|
#9
|
|||
|
|||
|
Quote:
Actually something to add to the list: -Millisecond standard timing
__________________
Only ONE more functions in the Wiki need addressing! Zen X-Fi2 LUA Wiki Want to protect your applications? Click Here! Tower Defense Thread Zen Lock - Protect Your Zen! |
|
#10
|
||||
|
||||
|
os.clock to work
|
|
#11
|
|||
|
|||
|
os.clock works, just not the way we want it.
__________________
Only ONE more functions in the Wiki need addressing! Zen X-Fi2 LUA Wiki Want to protect your applications? Click Here! Tower Defense Thread Zen Lock - Protect Your Zen! |
|
#12
|
||||
|
||||
|
So we would like it to work differently? Could you specify how it should be changed so I can add it to the list?
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#13
|
||||
|
||||
|
os.clock doesn't work ¬_¬ it always gives the same value on the player, even though it works on the sim. What it should do is give the amount of time the app has been running in milliseconds.
|
|
#14
|
|||
|
|||
|
It gives the time the os has been running, not our application scripts. I think, I haven't used it in a while.
__________________
Only ONE more functions in the Wiki need addressing! Zen X-Fi2 LUA Wiki Want to protect your applications? Click Here! Tower Defense Thread Zen Lock - Protect Your Zen! |
|
#15
|
||||
|
||||
|
It would also be nice, but not essential, to add the +=, -=, *= etc operators, they can save so much time :P
|
|
#16
|
|||
|
|||
|
Quote:
EDIT: It'd be good if the image.draw(x,y,srcx,srcy,srcwidth,srcheight) worked on orientations other than the default 0 (landscape). The function doesn't use the source x,y position from which the image is supposed to draw and instead uses 0,0 within the image. So if you wanted to draw a part of an image in portrait view it will always give you a piece from the top left corner of size srcwidth, swrcheight instead of from the position within the image of srcx,srcy. |
|
#17
|
|||
|
|||
|
Quote:
Code:
-------------------------[drawing one tile]------------------------ -- standart creative image:draw is weird: -- (against their own specification in pdf) -- image:draw(x,y,imx,imy,imw,imh) -- it works this way: -- x, y = offset of image on screen (where would be left upper corner of full image positioned on screen) -- imx, imy = screen coordinates of upper left corner of scissor rectangle -- imw, imh = width and height of scissor rectangle -- (i fixed this is by their specifications) -- my function is different: -- x,y are coords of image part on screen -- imx, imy are coords of upper left corner of part in image coord system -- imw, imh are width and height of part cut from image function drawtile(image,x,y,imx,imy,imw,imh) image:draw(x-imx,y-imy,x,y,imw,imh) end |
|
#18
|
||||
|
||||
|
So, a new firmware is out. If any of you guys notice that any of the things on our list have been added please inform about it here so I can scratch it from the list.
__________________
"If you are good enough at English to apologize, then there is no need to." - A good friend of mine Discovered something about the X-Fi2 you think others may not know? Post it here so others can learn about it! Have a question about X-Fi2 apps? Consult the FAQ before creating a thread about it. Like my work? Tell your friends. Don't like it? Tell me so I can improve. ^.^ |
|
#19
|
|||
|
|||
|
What about unicode support ???
The device itself is capable since it does displaying ID3 tags! |
|
#20
|
||||
|
||||
|
1) Access to the battery status, so we can display battery info
2) Ability to run apps in background so users can go back and change music, then come back to the running app exactly where they left it 3) Different fonts - ability to load fonts 4) Screen lock functionality like the player's auto lock |
![]() |
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 06:54 AM.












Hybrid Mode
