PsnRoomBrowser - stingray.PsnRoomBrowser object reference - Stingray Lua API Reference
The PsnRoomBrowser provides access to the list of game rooms available on the
PlayStation Network (PSN).
Call refresh() to refresh the list.
Call num_rooms() to get the number of available rooms, and call room() to retrieve detailed
information about each of those rooms. You can use these details to determine if you want to join
the room, and the room ID needed in order to connect.
|
Indicates whether or not the room browser is currently refreshing its internal list of available rooms
on the PlayStation Network.
|
Parameters Returns boolean |
Returns true if the room browser is currently refreshing its list, or false
otherwise.
|
If this function returns true, calling refresh() will have no effect.
|
Returns the number of available rooms found on the PlayStation Network.
|
Parameters Returns integer |
The number of available rooms.
|
|
Refreshes the list of available game rooms on the PlayStation Network.
|
Parameters Returns | This function does not return any values. |
|
room ( self, index ) : network_psn_room_info
Returns details about the specified room, including the ID that you must use
to connect to the room.
|
Parameters self : | stingray.PsnRoomBrowser |
Specifies the object instance that this function will act on.
|
index : | integer |
The index number of the room to retrieve from the list maintained by the room browser.
|
Returns