Shine has posted a preview release of LuaPlayer for the PSP version 0.15.
Lua is the easiest way for beginner coders to release games and applications for the PSP without the messing about of setting up a major Dev Environment, heres whats new:
- Timer bug fixed (was bug in PSPSDK) [mrbrown]
- Outgoing wlan socket support (based on PspPet's "WiFi Multi-Test .03") [Shine]
WiFi Functions:
– Wlan.init() - Initializes Wlan
– Wlan.term() - Terminates Wlan
– Wlan.getConnectionConfigs () - Returns table consisting of strings that tell the connection configuration names on your psp
– Wlan.useConnectionConfig( string config) - Sets the connection configuration to use (config)
Socket Functions:
– Socket.connect(string IP, integer PORT) - Returns a Socket Object that can Send and Get data from an IP Address(IP) (Connects to Port PORT)
Socket Object Functions:
– socket.send(string data) - Sends data to the Socket that is a string (data)
– socket.recv() - Returns data that has been sent to the Socket
– socket:isConnected() - Returns true(1) or false(0) depending on if you are connected or not