[Jais-checkins] jaisteam/src/jais/world WorldModel.java,1.56,1.57 WorldDataAccessInterface.java,1.8,
Status: Beta
Brought to you by:
maestrodd
|
From: <mae...@us...> - 2002-07-13 20:29:27
|
Update of /cvsroot/jais/jaisteam/src/jais/world
In directory usw-pr-cvs1:/tmp/cvs-serv2840/world
Modified Files:
WorldModel.java WorldDataAccessInterface.java
Log Message:
set storage time to 2 seconds
changeViewModes implemented (all modes supported now)
Index: WorldModel.java
===================================================================
RCS file: /cvsroot/jais/jaisteam/src/jais/world/WorldModel.java,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -d -r1.56 -r1.57
*** WorldModel.java 13 Jul 2002 16:21:52 -0000 1.56
--- WorldModel.java 13 Jul 2002 20:29:23 -0000 1.57
***************
*** 22,26 ****
private int m_playerNumber; // where the playerNumber is stored
! private final int FORGET_TIME= 1*10; // x-seconds
private final double NOT_MOVING=0.01; // if deltaVector is smaller than we say Object did not move
--- 22,26 ----
private int m_playerNumber; // where the playerNumber is stored
! private final int FORGET_TIME= 3*10; // x-seconds
private final double NOT_MOVING=0.01; // if deltaVector is smaller than we say Object did not move
***************
*** 242,245 ****
--- 242,251 ----
return getSenseBodyInfo().m_viewMode;
}
+
+ public String getViewQuality()
+ {
+ return getSenseBodyInfo().m_ViewQuality;
+ }
+
Index: WorldDataAccessInterface.java
===================================================================
RCS file: /cvsroot/jais/jaisteam/src/jais/world/WorldDataAccessInterface.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** WorldDataAccessInterface.java 13 Jul 2002 16:21:52 -0000 1.8
--- WorldDataAccessInterface.java 13 Jul 2002 20:29:24 -0000 1.9
***************
*** 137,140 ****
--- 137,146 ----
public String getViewMode();
+ /**
+ *
+ * @return boolean, true if HighQuality, false if low
+ */
+ public String getViewQuality();
+
/**************************************************************************************************/
/* Here follow methods provided for the visualization of our WorldModel
|