Uses of Class
cz.cuni.amis.pogamut.base.utils.guice.AgentScoped

Packages that use AgentScoped
cz.cuni.amis.pogamut.base.agent   
cz.cuni.amis.pogamut.base.agent.impl   
cz.cuni.amis.pogamut.base.agent.jmx   
cz.cuni.amis.pogamut.base.agent.module   
cz.cuni.amis.pogamut.base.communication.command.impl   
cz.cuni.amis.pogamut.base.communication.connection.impl   
cz.cuni.amis.pogamut.base.communication.connection.impl.socket   
cz.cuni.amis.pogamut.base.communication.mediator.impl   
cz.cuni.amis.pogamut.base.communication.parser.impl.yylex   
cz.cuni.amis.pogamut.base.communication.translator.impl   
cz.cuni.amis.pogamut.base.communication.worldview.impl   
cz.cuni.amis.pogamut.base.component   
cz.cuni.amis.pogamut.base.component.bus   
cz.cuni.amis.pogamut.base.component.lifecyclebus   
cz.cuni.amis.pogamut.base.utils.logging   
cz.cuni.amis.pogamut.base3d.agent   
cz.cuni.amis.pogamut.base3d.worldview   
cz.cuni.amis.pogamut.multi.agent.impl   
cz.cuni.amis.pogamut.multi.communication.worldview.impl   
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.agent
 

Classes in cz.cuni.amis.pogamut.base.agent with annotations of type AgentScoped
 interface IControllable
          Interface providing a control methods for the implementors.
 interface IGhostAgent
          Interface of the agent that may observe the world and can even act inside it but does not have the body (notice that in case that the world contains agents-ghosts, that are "physically" being somewhere, they would be IEmbodiedAgent not this IGhostAgent).
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.agent.impl
 

Classes in cz.cuni.amis.pogamut.base.agent.impl with annotations of type AgentScoped
 class AbstractEmbodiedAgent<WORLD_VIEW extends IWorldView,ACT extends IAct>
           
 class AbstractGhostAgent<WORLD_VIEW extends IWorldView,ACT extends IAct>
          Next step to embodied agents are those without the physical body but with the ability to act inside the environment.
 class AbstractObservingAgent<WORLD_VIEW extends IWorldView>
          The main difference between AbstractAgent and AbstractObservingAgent is that this one has a world to observe.
 class AgentId
          Default AgentId providing unique id based on UID and IP of the host.
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.agent.jmx
 

Classes in cz.cuni.amis.pogamut.base.agent.jmx with annotations of type AgentScoped
 class AgentJMXComponents<T extends IAgent>
          Wraps a few methods into one place so it won't plague the public method space of the agent.
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.agent.module
 

Classes in cz.cuni.amis.pogamut.base.agent.module with annotations of type AgentScoped
 class LogicModule<AGENT extends IAgent>
           
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.communication.command.impl
 

Classes in cz.cuni.amis.pogamut.base.communication.command.impl with annotations of type AgentScoped
 class Act
          TODO!
 class StringCommandSerializer
           
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.communication.connection.impl
 

Classes in cz.cuni.amis.pogamut.base.communication.connection.impl with annotations of type AgentScoped
 class AbstractConnection<ADDRESS extends IWorldConnectionAddress>
          Implementation of the basic connection to the world server.
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.communication.connection.impl.socket
 

Classes in cz.cuni.amis.pogamut.base.communication.connection.impl.socket with annotations of type AgentScoped
 class SocketConnection
           
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.communication.mediator.impl
 

Classes in cz.cuni.amis.pogamut.base.communication.mediator.impl with annotations of type AgentScoped
 class Mediator
          This class should wrap the reading thread that continuously reads IWorldChangeEvent from the IWorldChangeEventOutput passing them to the without any delay.
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.communication.parser.impl.yylex
 

Classes in cz.cuni.amis.pogamut.base.communication.parser.impl.yylex with annotations of type AgentScoped
static class IYylexObserver.LogObserver
          Default implementation of the IYylexObserver logging everything into AgentLogger.platform() log category.
 class YylexParser
          TODO!:
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.communication.translator.impl
 

Classes in cz.cuni.amis.pogamut.base.communication.translator.impl with annotations of type AgentScoped
 class WorldMessageTranslator
          Abstract class for translators between world messages (InfoObjects) and IWorldEvents.
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.communication.worldview.impl
 

Classes in cz.cuni.amis.pogamut.base.communication.worldview.impl with annotations of type AgentScoped
 class AbstractWorldView
          Abstract world view is implementing some of the tedious things every WorldView will surely implement -> maps for holding the references to all world objects either according to their id and type (class).
 class EventDrivenWorldView
          Schema: "real" world | ...
 class LockableWorldView
          WorldView that can be locked.
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.component
 

Classes in cz.cuni.amis.pogamut.base.component with annotations of type AgentScoped
 interface IControllable
          Interface providing a control methods for the implementors.
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.component.bus
 

Classes in cz.cuni.amis.pogamut.base.component.bus with annotations of type AgentScoped
 class ComponentBus
          Too complex - not suitable for inheritance ...
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.component.lifecyclebus
 

Classes in cz.cuni.amis.pogamut.base.component.lifecyclebus with annotations of type AgentScoped
 class LifecycleBus
          Lifecycle bus is implementing ILifecycleBus which is extending IComponentBus by implementing the knowledge of lifecycle states of various IComponents.
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base.utils.logging
 

Classes in cz.cuni.amis.pogamut.base.utils.logging with annotations of type AgentScoped
 class AbstractAgentLogger
          All logging apis are fine ...
 class AgentLogger
          All logging apis are fine ...
 class LogCategories
          Class that wraps the map with log categories.
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base3d.agent
 

Classes in cz.cuni.amis.pogamut.base3d.agent with annotations of type AgentScoped
 class AbstractAgent3D<WORLD_VIEW extends IVisionWorldView,ACT extends IAct>
          Adds Agent3D special JMX abilities.
 

Uses of AgentScoped in cz.cuni.amis.pogamut.base3d.worldview
 

Classes in cz.cuni.amis.pogamut.base3d.worldview with annotations of type AgentScoped
 class Vision
          Vision is taking care about the objects the bot might see (of all implementing IViewable interface).
 

Uses of AgentScoped in cz.cuni.amis.pogamut.multi.agent.impl
 

Classes in cz.cuni.amis.pogamut.multi.agent.impl with annotations of type AgentScoped
 class TeamedAgentId
           
 

Uses of AgentScoped in cz.cuni.amis.pogamut.multi.communication.worldview.impl
 

Classes in cz.cuni.amis.pogamut.multi.communication.worldview.impl with annotations of type AgentScoped
 class LocalWorldViewAdapter
          This class serves as an adapter for ILocalWorldView to satisfy the IWorldView interface, all methods of this worldView only call the appropriate methods on the backing localWorldView
 class VisionLocalWorldView
          VisionLocalWorldView manages information about all objects currently in the bot's FOV (field-of-view) by implementing methods from IVisionLocalWorldView interface.
 



Copyright © 2013 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.