Package | Description |
---|---|
com.tameif.tame |
Base package.
|
com.tameif.tame.element |
Contains the element types.
|
com.tameif.tame.element.context |
Contains context and state data for a TAME context.
|
Modifier and Type | Method and Description |
---|---|
static void |
TAMELogic.doBrowse(TAMERequest request,
TAMEResponse response,
ObjectContainer element)
Attempts to perform an element browse.
|
static void |
TAMELogic.doBrowse(TAMERequest request,
TAMEResponse response,
ObjectContainer element,
java.lang.String tag)
Attempts to perform an element browse.
|
Modifier and Type | Class and Description |
---|---|
class |
TContainer
Container that just holds objects.
|
class |
TPlayer
The viewpoint inside a world.
|
class |
TRoom
Environmental instance of every adventure game.
|
class |
TWorld
Contains immutable World data.
|
Modifier and Type | Field and Description |
---|---|
protected com.tameif.tame.struct.HashDequeMap<ObjectContainer,TObject> |
TOwnershipMap.objectsOwnedByElements
Ownership map - objects owned by elements.
|
protected java.util.Map<TObject,ObjectContainer> |
TOwnershipMap.objectsToElement
Reverse lookup object - not saved.
|
Modifier and Type | Method and Description |
---|---|
void |
TOwnershipMap.addObjectToElement(TObject object,
ObjectContainer element)
Adds an object to an element that can hold objects.
|
boolean |
TOwnershipMap.checkElementHasObject(ObjectContainer element,
TObject object)
Checks if an element possesses an object.
|
java.lang.Iterable<TObject> |
TOwnershipMap.getObjectsOwnedByElement(ObjectContainer element)
Gets the list of objects owned by an element.
|
int |
TOwnershipMap.getObjectsOwnedByElementCount(ObjectContainer element)
Gets the count of objects owned by an element.
|