[ Новые сообщения · Участники · Правила форума · Поиск · Подписки ]
  • Страница 1 из 1
  • 1
PSX-Core.ru - Программное сообщество PlayStation » Общий форум по PlayStation Vita » Прошивки и программы для PlayStation Vita » Эмуляторы для PlayStation Vita » Lua Player Plus Vita [r.6]/ONElua [V4R1] (интерпретаторы языка LUA)
Lua Player Plus Vita [r.6]/ONElua [V4R1]
dw_tn Дата: Сб, 06 Авг 2016, 18:46 | Сообщение #1
Супер мозг
Сообщений: 4823
Награды: 2  +
Замечания:  ±
Lua Player Plus Vita/ONElua






Github LUA Player Plus: https://github.com/Rinnegatamante/lpp-vita
Оф сайт ONE LUA: https://u.to/6A9oDw
Github ONE LUA: https://github.com/ONElua/ONEluaVita

Возможности LUA Player Plus:

Lua Player Plus Vita - первый LUA интерпретатор сделанный для Sony PlayStation Vita. Raycast 3D движок позволяет создавать 3D игры начального уровня при помощи технологии ray casting.

Raycast 3D для Vita имеет следующий возможности:

  • Different tile size maps
  • Automated camera and player position management
  • Support for huge maps (pratically there aren’t limitations)
  • Support for sky rendering and floor rendering
  • Automated minimap renderer with player position
  • Textured walls support
  • Wall Collisions check
  • Shading support
  • Bullet system (Ray casting with returning values)



    Возможности ONE LUA:

    • The sound and cam modules have been added.
    • Added new ONEmaker GUI to facilitate the creation of your own vpks.
    • Removed "app0:" the partition, and added support writing on the route of the app ("ux0:/app/<ID>").
    • Added ONEdebugger - Real-time debugger errors in your scripts.
    • Added os.uri, lets you call “special” URIs on your PS Vita.
    • Added functions: files.makezip() to create .zips and files.installthemes() to install CustomThemes in LiveArea.
    • Optimization of our Callbacks and the possibility to stop or abort processes in the callback, check the Callbacks section for more information..
    • Optimization of the files module (Please check our Documentation).
    • Added possibility to Install/Update/Uninstall Homebrew's in vpk format.
    • Updated function 'game.info()', now get data of .sfo, eboot.pbp or VPKs/ZIPs.
    • Added the possibility to load maps (tiles) and draw.
    • Added the possibility to load ttf or pgf fonts.
    • Added the possibility to load a default font: onefont.pgf if there alongside our EBOOT.BIN, otherwise load the default font. Simply place the source properly renamed onefont.pgf and thus the eboot of ONElua can start our Homebrew with this default Font.
    • Added the Lua Bit library that allows level operations bit by bit.
    • Added several 'PATCH' to extend the syntax of lua, examples:
    • C Type operations: "sum: +=, subtraction:-=, multiplication: *=, division: /=, power: ^=, mod: %=, different: !=, division does not float: \"
    • C bit operations: "and: &, or: |, not: ~, shift left: <<, right shift: >>"
    • Operations continue, "skips a cycle", in any loop.


    Скачать:

    * Lua Player Plus Vita r6
    * ONEluaVita4r1
    * Документация ONEluaVita_Doc_En.chm

    Прикрепления: 3954155.png (3.0 Kb) · 2169236.png (363.0 Kb)


    услуги модератора люкс класса- обратиться.
  •  
    pvc1 Дата: Вт, 06 Сен 2016, 11:51 | Сообщение #2
    Высшая материя
    Сообщений: 10623
    Награды: 2  +
    Замечания:  ±
    r.5
    Цитата
    New functions:

    - Controls.rumble() - Changes rumble state of a certain dualshock (PSTV only)
    - Screen.getPixel() - Gets the color of a pixel on the screen
    - Screen.waitVblankStart() - Performs a screen vertical synchronization (vSync)
    - System.getTime() - Gets current system time
    - System.getDate() - Gets current system date
    - System.getLanguage() - Gets system language
    - System.getUsername() - Gets PSN username
    - System.extractZIP() - Extracts a ZIP archive
    - System.extractFromZIP() - Extract a file from a ZIP archive
    - Socket.init() - Inits sockets system
    - Socket.term() - Terminates sockets system
    - Socket.createServerSocket() - Creates a server socket
    - Socket.send() - Sends a message on a socket
    - Socket.receive() - Receives a message on a socket
    - Socket.accept() - Accepts connections on a socket
    - Socket.close() - Closes a socket
    - Socket.connect() - Connects to a server using a socket
    - Keyboard.show() - Initializes OSK keyboard
    - Keyboard.getState() - Gets current state of the OSK keyboard
    - Keyboard.getInput() - Gets input of the OSK keyboard
    - Keyboard.clear() - Terminates OSK keyboard

    Syntax changes:

    - Now all Graphics drawing images functions accept an extra optional argument to perform a texture tint.
    - Changed arguments order of Graphics drawing images to respec lpp-3ds.
    - Now Controls.read(), Controls.readLeftAnalog() and Controls.readRightAnalog() accept an extra argument that tells what controller to use (PSTV only)

    New feature and improvements:

    - Now lpp-vita will be able to use safe eboots for your homebrews.
    - Increased available RAM size to 192 MB.
    - Now multiple instances of the same sound can be put in reproduction without any issues.
    - Now VSync is disabled by default and usable with Screen.waitVblankStart().

    Bugfixes:

    - Now Sound.pause() and Sound.resume() are working as intended.
    - Now Sound.play() won't cause desync issues with PCM WAV tracks.
    - Fixed LOOP and NO_LOOP globals. Now they're working as intended.
    - Fixed a flaw in io.read() implementation. Now it works as intended.

    Samples:

    - Corrected syntax of Sound sample.
    - Added Keyboard sample.
    - Added File Downloader sample.





     
    pvc1 Дата: Ср, 23 Ноя 2016, 11:01 | Сообщение #3
    Высшая материя
    Сообщений: 10623
    Награды: 2  +
    Замечания:  ±
    ONElua Release V2R0 - еще один вариант интерпретатора LUA



    Оф.сайт разработчика: https://onelua.x10.mx/forum/viewforum.php?f=16
    Цитата
    - Fixed prints (%,ñ,... etc).
    - Change buttons.rumble.
    - Added a complete file system to support path work.
    - Removed "app0:" the partition, and added support writing on the route of the app.
    - Added sintaxis extended in strings, Operators "+, -, /, *, +=, -=, *=, /=". example print("Hello from " + "ONElua") -- Hello from ONElua
    - Added ONEdebugger - Real-time debugger errors in your scripts.
    - Added os.uri, lets you call “special” URIs on your PS Vita.
    - Added os.arg, You can invoke ONElua from another application, and know how it was called and if there is any special argument.
    - Added possibility to install themes, "LiveArea".
    - Added possibility to use protocol "https://" in the http module.
    - Added possibility to stream PSVITA screen to PC "Based on Rinnegatamante code and compatible with rinCheat Streamer PC app".
    - Fixed a bug in files.list 'times'.
    - Added Support to write/read from "savedata0:".
    - Reorder code and internal improvements.
    - Added Sound module, Support MP3 format.
    - Added sound.getid3() and sound.extractcover(), to handle mp3 files.
    - Added Camera module, you can manipulate both chambers, and apply some tricks.
    - Added function to compress file or folder, 'files.makezip()'
    - Updated function 'game.info()', now get data of .sfo, eboot.pbp or VPKs/ZIPs.


    Скачать:

    * ONEluaVita2r0
    Прикрепления: 7247318.jpg (75.2 Kb)





     
    pvc1 Дата: Вт, 18 Апр 2017, 10:32 | Сообщение #4
    Высшая материя
    Сообщений: 10623
    Награды: 2  +
    Замечания:  ±
    ONElua Release V3R0


    Цитата
    + Ported to be 100% compatible with taiHEN and use the maximum of functions.
    + New Touch Module (separation of the buttons module).
    + New Motion Module (Read Accelerometer, gyroscope).
    + New Console Module (Debug text console).
    + New Thread Module (Handling of threads or processes).
    + New Channel Module (Data connections between threads or processes).
    + New Link Module (Remote File Emulation), used 'PSP2LINK' of Bigboss @psxdev.
    + New Theme Module (Management of personalized themes for Livearea).
    + Completely rewritten Sound module, now supports OGG, MP3, WAV, in addition to playing from net sources.
    + Added function buttons.homepopup(), Enable / Disable the PS button to exit a game or app.
    + Added function buttons.portinfo(), Gets information from the control ports on the console.
    + Fixed functions buttons.rumble() and buttons.lbar().
    + Added the ability to scan QR codes with the camera, using the function cam.scanqr().
    + Added the metafunction of converting a color to a number, using color.tonumber().
    + Added 2 new colors in color.loadpalette(), 'color.shine' and 'color.shadow'.
    + Added the game module (Handling applications or Bubbles), Some functions:
    |- game.list(), It allows to obtain a list of all the installed games in ux0 and ur0 of your console.
    |- game.move(), It allows to move a game or application from ux0 to ur0 or vice versa in the system.
    |- game.delete(), Delete a game or application on the system.
    |- game.exists(), Lets you check if a game or application exists on the system.
    |- game.install() & game.installdir(), Installation of VPK packages, and directories, Now when installing an update of a game the changelog.xml is shown correctly in the game bubble in the Livearea.
    + Added the possibility of render scroll effect, in the screen.print().
    + Fixed the function screen.clip(), now work, and support circle limit.
    + Added the function screen.brightness(), Allows you to get and set the brightness level in the console.
    + Added the function screen.frame(), Allows you to get the current frame that the console is displaying.
    + Added several new functions in the OS module:
    |- os.master() Allows you to enable Unsafe mode on the console.
    |- os.access() Allows you to know the type of access in the console (Safe or Unsafe).
    |- os.taicfgreload() Allows a reload of the file config.txt from the Tai folder (henkaku).
    |- os.browser() Allows run the browser.
    |- os.newuri() Creates a fast access URI command to an application.
    |- os.updatedb(), os.rebuilddb() In order to update or completely rebuild the database (app.db).
    + Updated the internal debugger.
    + Rewritten most code, to be more optimized and fast.
    Прикрепления: 1188804.jpg (49.5 Kb)





     
    pvc1 Дата: Сб, 13 Май 2017, 08:15 | Сообщение #5
    Высшая материя
    Сообщений: 10623
    Награды: 2  +
    Замечания:  ±
    ONElua Release V3R1


    Цитата
    ++ Added function game.startup()' & 'game.bg0()', They allow you to obtain the resources of an application.
    ++ Added function 'themes.info()', This function allows to obtain the XML metadata of a livearea theme!.
    ++ Added function 'os.golivearea()', Go to livearea without closing the application or press the PS button.
    ++ Added function 'screen.waitvblankstart()', Wait for the screen to start the refresh.
    ++ Added function 'math.map()', Allow to transform a value from one range to another.
    ++ Added function batt.cycle(), Gets the number of battery charge cycles.
    ++ Added function 'cam.whitebalance()', Lets you know and set the camera's white balance.
    ++ Fix function 'console.clear()', Place the cursor on the origin.
    ++ Fix function 'themes.install()', Now install correctly using the title and author.
    ++ Fix 'screen.print()', When passing a custom font.
    ++ Fix a bug with fonts ttf, in suspend/resume...
    ++ Fix 'screen.shot()', Now it works well.
    ++ Updated debugger with new font...
    Прикрепления: 9600095.jpg (63.7 Kb)





     
    pvc1 Дата: Пн, 31 Июл 2017, 14:39 | Сообщение #6
    Высшая материя
    Сообщений: 10623
    Награды: 2  +
    Замечания:  ±
    r.6
    Цитата
  • Sixth official release of Lua Player Plus Vita.





  •  
    pvc1 Дата: Вт, 16 Янв 2018, 09:41 | Сообщение #7
    Высшая материя
    Сообщений: 10623
    Награды: 2  +
    Замечания:  ±
    ONElua Release V4R0
    Цитата
    • Many constants have been updated, please check the constatnts you are using with new changes on the Documentation.
    • New functions for the camera module and updated incorporated constants for the module.
    • Optimization of the files module (Please check our Documentation).
    • The OSK (On Screen Keyboard) module has been re-written, now the OSK loads with the system language set on the PSVita.
    • Fix Crash of OSK if open more 10 times.
    • The OS module got new functions from wich we highlight:

    os.getreg(), os.setreg() for the Registry Manager (/CONFIG/).
    os.saveaccount(), os.restoreaccount(), os.removeaccount() for direct management of the files of your PSN Account.
    • Optimization of the font module, now the default PGF and PVF font loading allows to use 3 fonts on the system: Korean, Latin and the set language font on the PSVita.

    Added the possibility to load ttf, pgf or pvf fonts.
    • Optimization of the game module, with new attractive functions:

    game.mount(), game.umount(), game.rif(),game.frif(),game.refresh(). Thanks to the_Flow.
    game.list(), Has been optimized so the installed apps list on the PSVita can be loaded faster.
    • New functions for the image module, such as image.save() which can be used to convert images to 8 Bits
    • Improved audio player, now plays MP3, OGG, WAV formats, and plays from sources on the network.
    • Added the possibility of Install/Update/Uninstall CustomThemes of 'LiveArea'.
    • Added ONEdebugger - Real-time debugger errors in your scripts.






     
    pvc1 Дата: Чт, 08 Фев 2018, 14:24 | Сообщение #8
    Высшая материя
    Сообщений: 10623
    Награды: 2  +
    Замечания:  ±
    ONElua Release V4R1
    
    Цитата
  • Many constants have been updated, please check the constatnts you are using with new changes on the Documentation.
  • Added the 'adhoc' module, which allows ONElua to communicate with other consoles in the local network.
  • Optimization of the camera, files and http module (Please review our Documentation again).
  • ONEdebugger - Real-time debugger errors in your scripts, now support USB & FTP connection.
  • The HTTP module received new functions among which we highlight:
    - http.upload() It allows uploading a file to a web server.
    - http.send() It allows to send binary data to a web server.





  •  
    PSX-Core.ru - Программное сообщество PlayStation » Общий форум по PlayStation Vita » Прошивки и программы для PlayStation Vita » Эмуляторы для PlayStation Vita » Lua Player Plus Vita [r.6]/ONElua [V4R1] (интерпретаторы языка LUA)
    • Страница 1 из 1
    • 1
    Поиск:

    Новости сайта
    16 Мар 2024

    13 Мар 2024

    13 Мар 2024

    29 Фев 2024

    28 Фев 2024

    27 Фев 2024

    04 Фев 2024

    27 Янв 2024

    25 Янв 2024

    08 Янв 2024

    15 Дек 2023

    06 Дек 2023

    06 Дек 2023

    06 Дек 2023

    08 Ноя 2023

    26 Окт 2023

    22 Сен 2023

    19 Сен 2023

    13 Сен 2023

    13 Сен 2023

    10 Сен 2023

    10 Сен 2023

    08 Сен 2023

    10 Авг 2023

    10 Авг 2023

    07 Июн 2023

    04 Июн 2023

    15 Май 2023

    25 Апр 2023

    19 Апр 2023

    01 Апр 2023

    20 Мар 2023

    14 Мар 2023

    14 Мар 2023

    11 Мар 2023

    08 Мар 2023

    08 Мар 2023

    08 Мар 2023

    08 Мар 2023

    06 Мар 2023

    06 Мар 2023

    04 Мар 2023

    28 Фев 2023

    02 Фев 2023

    01 Фев 2023

    19 Янв 2023

    16 Янв 2023

    16 Янв 2023

    13 Янв 2023

    30 Дек 2022

    Новое на форуме
    ПК софт для PlayStation 5
    [pvc1 в 21:30|18 Мар 2024] 
     
    Приложения для PlayStation 4
    [pvc1 в 12:09|18 Мар 2024] 
     
    Об играх PlayStation 2
    [Adanjanuzai в 11:52|18 Мар 2024] 
     
    Общая дискуссия по PlayStation 3
    [pvc1 в 20:15|17 Мар 2024] 
     
    Пишем, что хотим и о чем хотим...
    [tupik2 в 16:53|14 Мар 2024] 
     
    ПК программы для PlayStation 2
    [pvc1 в 14:42|14 Мар 2024] 
     
    Прошивки для PlayStation 4
    [pvc1 в 19:38|13 Мар 2024] 
     
    Общая дискуссия по PlayStation 5
    [pvc1 в 16:15|13 Мар 2024] 
     
    ПК софт для PlayStation 4
    [pvc1 в 08:40|13 Мар 2024] 
     
    Прошивки и приложения для PlayStation 3
    [in1975 в 06:07|13 Мар 2024] 
     
    Железные вопросы PlayStation 2
    [denben0487 в 23:33|08 Мар 2024] 
     
    Прошивки и программы для PlayStation Vita
    [pvc1 в 19:26|08 Мар 2024] 
     
    Железные вопросы PlayStation 2
    [Igor21 в 07:55|07 Мар 2024] 
     
    Железные вопросы PlayStation 2
    [Igor21 в 07:55|07 Мар 2024] 
     
    Железные вопросы PlayStation 2
    [Igor21 в 07:53|07 Мар 2024] 
     
    ПК программы для PlayStation 3
    [pvc1 в 13:24|06 Мар 2024] 
     
    ПК программы для PlayStation 3
    [pvc1 в 21:22|05 Мар 2024] 
     
    Программы и Приложения для PlayStation Portable
    [pvc1 в 21:32|04 Мар 2024] 
     
    ПК софт для PlayStation 4
    [pvc1 в 21:22|04 Мар 2024] 
     
    Программы и Приложения для PlayStation Portable
    [pvc1 в 21:11|04 Мар 2024] 
     
    Приложения для PlayStation 2
    [vitas155 в 16:02|03 Мар 2024] 
     
    Приложения для PlayStation 2
    [vitas155 в 14:06|03 Мар 2024] 
     
    Приложения для PlayStation 5
    [pvc1 в 12:27|03 Мар 2024] 
     
    Об играх PlayStation 3
    [karenjan99 в 17:10|29 Фев 2024] 
     
    Прошивки и приложения для PlayStation 3
    [pvc1 в 15:47|29 Фев 2024] 
     
    Прошивки и приложения для PlayStation 3
    [pvc1 в 15:28|29 Фев 2024] 
     
    Мобильные приложения
    [pvc1 в 10:32|29 Фев 2024] 
     
    Общая дискуссия по PlayStation 5
    [pvc1 в 20:56|28 Фев 2024] 
     
    Прошивки и приложения для PlayStation 3
    [pvc1 в 08:10|28 Фев 2024] 
     
    Железные вопросы PlayStation 2
    [denben0487 в 01:09|28 Фев 2024] 
     
    Прошивки и приложения для PlayStation 3
    [pvc1 в 16:59|27 Фев 2024] 
     
    Прошивки и программы для PlayStation Vita
    [pvc1 в 18:38|24 Фев 2024] 
     
    Железные вопросы PlayStation 2
    [Dikavelll в 14:50|24 Фев 2024] 
     
    Общая дискуссия по PS Portal
    [vitas155 в 13:40|22 Фев 2024] 
     
    Железные вопросы PlayStation 2
    [vitas155 в 15:29|21 Фев 2024] 
     
    ПК софт для PlayStation 4
    [pvc1 в 15:59|20 Фев 2024] 
     
    Приложения для PlayStation 4
    [pvc1 в 19:54|18 Фев 2024] 
     
    Программы и Приложения для PlayStation Portable
    [pvc1 в 19:37|17 Фев 2024] 
     
    Прошивки и программы для PlayStation Vita
    [pvc1 в 19:25|17 Фев 2024] 
     
    Эмуляторы для PlayStation Vita
    [pvc1 в 09:10|15 Фев 2024] 
     
    Пишем, что хотим и о чем хотим...
    [vitas155 в 12:42|14 Фев 2024] 
     
    Прошивки и программы для PlayStation Vita
    [pvc1 в 10:12|12 Фев 2024] 
     
    Общая дискуссия по PlayStation 2
    [vitas155 в 22:58|10 Фев 2024] 
     
    Приложения для PlayStation 2
    [vitas155 в 21:40|10 Фев 2024] 
     
    Прошивки и программы для PlayStation Vita
    [pvc1 в 09:28|06 Фев 2024] 
     
    Эмуляторы для PlayStation Vita
    [pvc1 в 08:54|04 Фев 2024] 
     
    Приложения для PlayStation 2
    [pvc1 в 08:53|04 Фев 2024] 
     
    Программы и Приложения для PlayStation Portable
    [pvc1 в 08:50|04 Фев 2024] 
     
    Приложения для PlayStation 2
    [pvc1 в 21:54|03 Фев 2024] 
     
    Программы и Приложения для PlayStation Portable
    [pvc1 в 22:49|27 Янв 2024] 
     
    Топ 50 файлов
    135663-загрузок

    75592-загрузок

    71055-загрузок

    62077-загрузок

    54550-загрузок

    48522-загрузок

    42256-загрузок

    36357-загрузок

    35604-загрузок

    27993-загрузок

    24105-загрузок

    23140-загрузок

    21939-загрузок

    20942-загрузок

    19839-загрузок

    19807-загрузок

    18223-загрузок

    17738-загрузок

    16467-загрузок

    16154-загрузок

    15242-загрузок

    14210-загрузок

    14171-загрузок

    14030-загрузок

    13796-загрузок

    13528-загрузок

    13457-загрузок

    12751-загрузок

    12734-загрузок

    12684-загрузок

    12530-загрузок

    11713-загрузок

    11615-загрузок

    11121-загрузок

    11112-загрузок

    11041-загрузок

    10563-загрузок

    10322-загрузок

    9984-загрузок

    9680-загрузок

    9629-загрузок

    9204-загрузок

    9159-загрузок

    9016-загрузок

    8994-загрузок

    8987-загрузок

    8865-загрузок

    8807-загрузок

    8633-загрузок

    8491-загрузок

    Топ 100 пользователей
  • pvc1 - 10623
  • dw_tn - 4823
  • karenjan99 - 2470
  • NVS - 2057
  • vitas155 - 1737
  • Retro¥GAMER - 1736
  • Dead - 1713
  • DaeMan - 1620
  • archicharmer - 1586
  • Kastl - 1521
  • denben0487 - 1443
  • DruchaPucha - 1303
  • dimm - 1102
  • kolan - 924
  • Izotov - 889
  • mishail12 - 699
  • sdaf13 - 689
  • WOLF - 559
  • ShellShocked - 504
  • tupik - 496
  • The_REAL - 467
  • vladvlad162 - 459
  • xbox-ua - 445
  • wallace - 429
  • Mr2 - 404
  • aklakan - 394
  • LinuxFun - 381
  • Игорь - 378
  • zoyt - 357
  • reptail - 354
  • almaz - 344
  • NeahNEET - 343
  • tic0007 - 341
  • Dyons - 335
  • Mordoc - 320
  • pvo51 - 312
  • FreddyFreed - 293
  • Rion - 289
  • xxxx - 279
  • BoSonOfPirate - 275
  • doom-ex - 249
  • DecK - 246
  • ZimZum - 227
  • LyNX - 209
  • DarkDrem - 207
  • KOSMOS - 190
  • 1oleg1 - 186
  • AKuHAK - 181
  • alexsx06 - 180
  • YAGAMI55 - 171
  • Kozinenko - 170
  • warezhunter_ - 161
  • DarkTima - 160
  • vincent - 160
  • Conker - 159
  • Random - 155
  • ROBOCOP - 155
  • duk - 154
  • in1975 - 151
  • Dr_Quake - 144
  • fox1918 - 141
  • Rikki-tikki-tavi - 138
  • tleon - 136
  • MAK_roS - 136
  • adamdead - 132
  • Buddda - 131
  • Ensight - 131
  • Virtua - 129
  • Fury - 128
  • Gizmondo88 - 126
  • PS3Evil - 125
  • M@ri0 - 121
  • CutToSleep - 121
  • turuta7 - 112
  • MaNeR - 106
  • gladeshawn - 105
  • tim_cat - 103
  • shurup - 103
  • ixx - 102
  • matich - 100
  • elvo - 100
  • Bethoven1945 - 97
  • aumihta24 - 97
  • belforrrr - 96
  • nikkomp - 94
  • serjlab - 94
  • bishop - 93
  • Prosmart - 93
  • hebroid - 92
  • Дмитрий_У - 91
  • JEKAN - 91
  • NITROUIH - 91
  • Dart_Mol - 90
  • doomer - 88
  • Henry - 86
  • butt-head - 85
  • RUSKos - 84
  • rodan_lewarx - 83
  • Payol - 83
  • FrodoSumkin - 82