Uses of Interface
simulator.model.ISimulatorNet

Packages that use ISimulatorNet
game.net Network interface abstraction layer. 
game.protocol Implementation of the SCORE protocol. 
simulator.model Interface to concrete simulator models, which represent the state of the SOCCER game and implements the physical simulation. 
simulator.model.debug A trivial implementation of the required simulator model interfaces for debugging purposes. 
 

Uses of ISimulatorNet in game.net
 

Methods in game.net with parameters of type ISimulatorNet
 void RequestQueue.dispatchReqs(int time, ISimulatorNet sim)
           
 

Constructors in game.net with parameters of type ISimulatorNet
SCORESimulator(ISimulatorNet sim)
           
 

Uses of ISimulatorNet in game.protocol
 

Methods in game.protocol with parameters of type ISimulatorNet
 void AccelerateRequest.dispatch(ISimulatorNet sim)
           
 void SpinRequest.dispatch(ISimulatorNet sim)
           
 void SetTimeRequest.dispatch(ISimulatorNet sim)
           
 void KickRequest.dispatch(ISimulatorNet sim)
           
 void PlaceBallRequest.dispatch(ISimulatorNet sim)
           
 void PlacePlayerRequest.dispatch(ISimulatorNet sim)
           
abstract  void ControlRequest.dispatch(ISimulatorNet sim)
          Dispatch request to the simulator
 

Uses of ISimulatorNet in simulator.model
 

Methods in simulator.model that return ISimulatorNet
 ISimulatorNet ISimulatorView.getISimulatorNet()
          Get the object that implements the ISimulatorNet interface.
 

Uses of ISimulatorNet in simulator.model.debug
 

Classes in simulator.model.debug that implement ISimulatorNet
 class SMfacade
          A trivial implementation of the required simulator model interfaces for debugging purposes.
 

Methods in simulator.model.debug that return ISimulatorNet
 ISimulatorNet SMfacade.getISimulatorNet()