Uses of Class
marauroa.common.game.RPObject.ID
Package
Description
the Stendhal Client.
entities are all the interactive objects of the gaming world
(including players, NPCs, creatures, items, signs, chests, portals, ...)
This package contains the client network interface.
This package stores all the important data structures of Marauroa.
This is possibly the most complex part of all the middleware that makes up Arianne.
Role Playing Design is the determining factor on how easy is to create a new game for Arianne.
Role Playing Design is the determining factor on how easy is to create a new game for Arianne.
-
Uses of RPObject.ID in games.stendhal.client
-
Uses of RPObject.ID in games.stendhal.client.entity
-
Uses of RPObject.ID in games.stendhal.server.core.engine
-
Uses of RPObject.ID in games.stendhal.server.entity.mapstuff.area
Modifier and TypeFieldDescriptionprotected List<RPObject.ID>
OccupantArea.targets
A list of entities [potentially] occupying this area. -
Uses of RPObject.ID in marauroa.client.net
Modifier and TypeMethodDescriptionvoid
PerceptionHandler.apply(MessageS2CPerception message, Map<RPObject.ID,RPObject> world_instance)
Apply a perception to a world instance. -
Uses of RPObject.ID in marauroa.common.game
Modifier and TypeFieldDescriptionstatic RPObject.ID
RPObject.INVALID_ID
Defines an invalid object idModifier and TypeMethodDescriptionRPObject.getID()
Returns an ID object representing the id of this object.Modifier and TypeMethodDescriptionIRPZone.get(RPObject.ID id)
This method returns an object of the Zone.RPSlot.get(RPObject.ID id)
Gets the object from the slotboolean
IRPZone.has(RPObject.ID id)
This method returns true if the object exists in the Zoneboolean
RPSlot.has(RPObject.ID id)
This method returns true if the slot has the object whose id is idIRPZone.remove(RPObject.ID id)
This method removed an object of the Zone and return it.RPSlot.remove(RPObject.ID id)
This method removes the object from the slot.void
RPObject.setID(RPObject.ID id)
Sets the attributes that define the ID of the object.ModifierConstructorDescriptioncreates a new RPObjectNotFoundException -
Uses of RPObject.ID in marauroa.server.game.rp
Modifier and TypeFieldDescriptionprotected Map<RPObject.ID,RPObject>
MarauroaRPZone.objects
Objects contained by the zone indexed by its id.Modifier and TypeMethodDescriptionMarauroaRPZone.get(RPObject.ID id)
Returns the object which id is id.RPWorld.get(RPObject.ID id)
This method returns an object from a zone using it IDRPWorld.getRPZone(RPObject.ID objectid)
Returns the zone or null if it doesn't existsboolean
MarauroaRPZone.has(RPObject.ID id)
Returns true if the zone has that object.boolean
RPWorld.has(RPObject.ID id)
This method returns true if an object exists in a zone using it IDMarauroaRPZone.remove(RPObject.ID id)
Removes the object from zone.RPWorld.remove(RPObject.ID id)
This method returns an object from a zone using it IDRPWorld.removeRPZone(RPObject.ID objectid)
Removes a zone from world.