Results 1 to 12 of 12

Lua Player .20 released!

This is a discussion on Lua Player .20 released! within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; Lua Player .20 has been released! new stuff: v0.20 ========== - updated for gcc 4.1 and Lua 5.1. Some things ...

  
  1. #1
    Developer
    Points: 8,545, Level: 62
    Level completed: 32%, Points required for next Level: 205
    Overall activity: 0%

    Join Date
    Aug 2005
    Posts
    472
    QJ Pts
    8,545
    Level
    62
    Downloads
    0
    Uploads
    0

    Default Lua Player .20 released!

    Lua Player .20 has been released!

    new stuff:
    v0.20
    ==========
    - updated for gcc 4.1 and Lua 5.1. Some things you need to change for 5.1:
    - change table iteration code:
    "for i, value in someTable do" to
    "for i, value in ipairs(someTable) do"
    (but use "pairs" for tables like "t={foo=bar, foobar=99}"
    and "ipairs" for tables like "t={foo, bar}")
    - it's pure Lua 5.1: no binary operators and double as number type
    (e.g. now you can use one number for storing IP addresses)
    - Sound.load doesn't crash any more on invalid filenames
    - fixed problems with daylight saving time
    - Font:getTextSize fixed. Test case:
    proportional = Font.createProportional()
    proportional:setPixelSize s(0,8)
    test = proportional:getTextSize( 'some text')
    assert(test.width == 39)
    assert(test.height == 6)
    - blit operation from screen to image works now, e.g.:
    screenrint(10, 10, "hello", Color.new(255,255,255))
    image = Image.createEmpty(480, 272)
    image:blit(0, 0, screen, 480, 272, 480, 272, true)
    and now you have an "image" with the text "hello"
    - TTF font plotting to images now sets the alpha value to opaque, so
    you can write e.g. something like this for buffering texts in images:
    image = Image.createEmpty(400, 200)
    proportional = Font.createProportional()
    proportional:setPixelSize s(0, 16)
    image:fontPrint(proportio nal, 0, 20, 'Hello', Color.new(0, 255, 0))
    screen:blit(0, 0, image)
    screen:blit(3, 3, image)
    - new function Image.loadFromMemory for loading images from memory:
    jpegFile = io.open("test.jpg", "rb")
    data = jpegFile:read("*a")
    jpegFile:close()
    image = Image.loadFromMemory(data )
    PNG and JPEG is supported and autodetected
    - image-to-image blitting now uses alpha full blending [Callum Bethune]
    - System.rename(oldName, newName) for renaming files and directories

    get it from www.luaplayer.org



    PSP Monopoly | PSP Tic Tac Toe | PSP eMail and SMS | Drag Mini | Block Dude
    http://www.cools.biaklan.com
    Currently Working on ?????

    Quote of the Week

  2. #2
    sceKernelExitGame();
    Points: 19,955, Level: 89
    Level completed: 21%, Points required for next Level: 395
    Overall activity: 0%

    Join Date
    Jan 2006
    Location
    New York
    Posts
    3,126
    QJ Pts
    19,955
    Level
    89
    Downloads
    0
    Uploads
    0

    Default

    sweet!!! this is gr8! is it compatible with 2.xx?

  3. #3
    Developer
    Points: 8,545, Level: 62
    Level completed: 32%, Points required for next Level: 205
    Overall activity: 0%

    Join Date
    Aug 2005
    Posts
    472
    QJ Pts
    8,545
    Level
    62
    Downloads
    0
    Uploads
    0

    Default

    its still using prx's so i doubt it...

    PSP Monopoly | PSP Tic Tac Toe | PSP eMail and SMS | Drag Mini | Block Dude
    http://www.cools.biaklan.com
    Currently Working on ?????

    Quote of the Week

  4. #4
    QJ Gamer Gold
    Points: 18,627, Level: 86
    Level completed: 56%, Points required for next Level: 223
    Overall activity: 0%

    Join Date
    Mar 2006
    Location
    LOLWUT
    Posts
    2,625
    QJ Pts
    18,627
    Level
    86
    Downloads
    0
    Uploads
    0

    Default

    YAY!!! I love luaplayer, (since I code in lua)

  5. #5
    TheMarioKarters
    Guest

    Default

    Quote Originally Posted by Bronx*
    sweet!!! this is gr8! is it compatible with 2.xx?
    I doubt it.

  6. #6
    Points: 24,247, Level: 94
    Level completed: 90%, Points required for next Level: 103
    Overall activity: 0%

    Join Date
    Jul 2005
    Location
    texas
    Posts
    2,803
    QJ Pts
    24,247
    Level
    94
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by TheMarioKarters
    I doubt it.
    Hey TMK, psphax0r says that your spamming

    And I wonder why it is taking the front page soo long....I sent it to them at 7....
    牧来栠摩琠敨映汩獥
    PSN: youresam
    From Earth the Frozen Ipaqs shall rise and be silenced and all will live free.
    --Mike Hollingsworth

  7. #7
    TheMarioKarters
    Guest

    Default

    Quote Originally Posted by youresam
    Hey TMK, psphax0r says that your spamming

    And I wonder why it is taking the front page soo long....I sent it to them at 7....
    Wait eh?
    What are you talking about?

  8. #8
    QJ Gamer Bronze
    Points: 8,803, Level: 63
    Level completed: 18%, Points required for next Level: 247
    Overall activity: 0%

    Join Date
    Jan 2006
    Location
    Western Australia
    Posts
    1,046
    QJ Pts
    8,803
    Level
    63
    Downloads
    0
    Uploads
    0

    Default

    It'll be compatible with 2.XX if you get the modchip :).

  9. #9
    OMFG
    Points: 19,453, Level: 88
    Level completed: 21%, Points required for next Level: 397
    Overall activity: 0%

    Join Date
    Jul 2005
    Location
    Toronto
    Posts
    2,814
    QJ Pts
    19,453
    Level
    88
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by TheMarioKarters
    Wait eh?
    What are you talking about?
    you proved hax0rs point - just another post to add onto your ridiculously high post count

    What youresam said was fairly easy to understand. What was the point of asking "What?" other than to squeeze an extra post in.
    Last edited by Slasher; 06-03-2006 at 06:02 PM.

  10. #10
    words are stones in my <3
    Points: 35,274, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Join Date
    Jul 2005
    Location
    Spokane
    Posts
    5,008
    QJ Pts
    35,274
    Level
    100
    My Mood
    Lonely
    Downloads
    1
    Uploads
    0

    Default

    B10tch [email protected] mmmmmmmmmmmmmmmmmkay..... .

    lol, anyway, i like new LuaPlayers, and since there apps adn games from them are usually open-source, i can see different technques and aspects of coding, but not having a Computer LUAplayer as same version ruins it for me...

    ...at what speed must I live.. to be able to see you again?...

    Projects

    You can support my Open World 3D RPG for PSP by voting for it here


  11. #11
    QJ Gamer Platinum
    Points: 66,627, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Overall activity: 0%

    Join Date
    Feb 2006
    Location
    National Front Disco
    Posts
    13,057
    QJ Pts
    66,627
    Level
    100
    Downloads
    0
    Uploads
    0

    Default

    Cool, I was having trouble with the old one's, maybe this one will work better!

  12. #12
    QJ Gamer Silver
    Points: 10,906, Level: 69
    Level completed: 14%, Points required for next Level: 344
    Overall activity: 0%

    Join Date
    Oct 2005
    Location
    England
    Posts
    1,970
    QJ Pts
    10,906
    Level
    69
    Downloads
    0
    Uploads
    0

    Default

    Judging by the changelog, this one should be a lot more stable.

    Thanks for bearing with us guys, I'm not sure why this hasn't been front-paged yet. I was away yesterday at a football/soccer match - England v Jamaica. Quite eventful, England won 6-0!

    I've put it through now, should be on the front page soon.


 

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





All times are GMT -8. The time now is 08:00 PM.

Use of this Web site constitutes acceptance of the TERMS & CONDITIONS and PRIVACY POLICY
Copyright © , Caputo Media, LLC. All Rights Reserved. Cluster .