Class MMORoom
- All Implemented Interfaces:
Room
The MMORoom is ideal for huge virtual worlds and MMO games because it works with proximity lists instead of "regular" users lists. This allows thousands of users to interact with each other based on their Area of Interest (AoI). The AoI represents a range around the user that is affected by server and user events, outside which no other events are received.
The size of the AoI is set at Room creation time and it is the same for all users who joined it. Supposing that the MMORoom hosts a 3D virtual world, setting an AoI of (x=100, y=100, z=40) for the Room tells the server to transmit updates and broadcast events to and from those users that fall within the AoI range around the current user; this means the area within +/- 100 units on the X axis, +/- 100 units on the Y axis and +/- 40 units on the Z axis.
As the user moves around in the virtual environment, he can update his position in the corresponding MMORoom and thus continuously receive events about other users (and items - see below) entering and leaving his AoI. The player will be able to update his position via the SetUserPositionRequest request and receive updates on his current proximity list by means of the SFSEvent.PROXIMITY_LIST_UPDATE event.
Finally, MMORooms can also host any number of "MMOItems" which represent dynamic non-player objects that users can interact with. They are handled by the MMORoom using the same rules of visibility described before.
- See Also:
-
Field Summary
Fields inherited from class sfs3.client.entities.SFSRoom
DEFAULT_GROUP_ID, groupId, id, isAudioStreamingAllowed, isGame, isHidden, isJoined, isManaged, isPasswordProtected, maxSpectators, maxUsers, name, roomManager, specCount, userCount, userManager, variables -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddMMOItem(IMMOItem item) API internal usage onlyReturns the default Area of Interest (AoI) of this MMORoom.Returns the higher coordinates limit of the virtual environment represented by the MMORoom along the X,Y,Z axes.Returns the lower coordinates limit of the virtual environment represented by the MMORoom along the X,Y,Z axes.getMMOItem(int id) Retrieves an MMOItem object from its id property.Retrieves all MMOItem object in the MMORoom that fall within the current user's Area of Interest.voidremoveItem(int id) API internal usage onlyvoidsetDefaultAOI(Vec3D defaultAOI) API internal usage onlyvoidsetHigherMapLimit(Vec3D higherMapLimit) API internal usage onlyvoidsetLowerMapLimit(Vec3D lowerMapLimit) API internal usage onlyMethods inherited from class sfs3.client.entities.SFSRoom
addUser, containsUser, containsVariable, equals, fromSFSArray, getCapacity, getGroupId, getId, getMaxSpectators, getMaxUsers, getName, getPlayerList, getRoomManager, getSpectatorCount, getSpectatorList, getUserById, getUserByName, getUserCount, getUserList, getVariable, getVariables, hashCode, isAudioStreamingAllowed, isGame, isHidden, isJoined, isManaged, isPasswordProtected, removeUser, setAudioStreamingAllowed, setGame, setHidden, setJoined, setManaged, setMaxSpectators, setMaxUsers, setName, setPasswordProtected, setRoomManager, setSpectatorCount, setUserCount, setVariable, setVariables, toString
-
Constructor Details
-
MMORoom
Creates a new MMORoom instance.NOTE: developers never instantiate a SFSRoom manually: this is done by the SmartFoxServer 3 API internally.
- Parameters:
id- The Room id.name- The Room name.
-
MMORoom
Creates a new MMORoom instance.NOTE: developers never instantiate a SFSRoom manually: this is done by the SmartFoxServer 3 API internally.
- Parameters:
id- The Room id.name- The Room name.groupId- The id of the Group to which the Room belongs.
-
-
Method Details
-
getDefaultAOI
Returns the default Area of Interest (AoI) of this MMORoom.- Returns:
- the default Area of Interest (AoI) of this MMORoom.
- See Also:
-
getLowerMapLimit
Returns the lower coordinates limit of the virtual environment represented by the MMORoom along the X,Y,Z axes. If null is returned, no limits were set at Room creation time.- Returns:
- the lower map coordinates limit
- See Also:
-
getHigherMapLimit
Returns the higher coordinates limit of the virtual environment represented by the MMORoom along the X,Y,Z axes. If null is returned, no limits were set at Room creation time.- Returns:
- the higher map coordinates limit
- See Also:
-
setDefaultAOI
API internal usage only -
setLowerMapLimit
API internal usage only -
setHigherMapLimit
API internal usage only -
getMMOItem
Retrieves an MMOItem object from its id property. The item is available to the current user if it falls within his Area of Interest only.- Parameters:
id- The id of the item to be retrieved.- Returns:
- An MMOItem object, or null if the item with the passed id is not in proximity of the current user.
- See Also:
-
getMMOItems
Retrieves all MMOItem object in the MMORoom that fall within the current user's Area of Interest.- Returns:
- A list of MMOItem objects, or an empty list if no item is in proximity of the current user.
- See Also:
-
addMMOItem
API internal usage only -
removeItem
public void removeItem(int id) API internal usage only
-