2011-10-07 6 views
5

Necesito medir un período de tiempo que puede durar hasta unas pocas horas. Estoy asumiendo la forma normal de hacer esto sería algo así como:¿Cómo se puede evitar explotar el reloj en los juegos de Android?

Date date = new Date(); 
...wait some time... 
(new Date()).getTime() - date.getTime()) 

Pero es posible que un usuario cambie reloj de nuevo una hora de Android para engañar al juego y hacer que el espacio de tiempo más corto? ¿El tiempo de lectura de una fuente en línea sería la mejor solución?

Respuesta

9

new Date() usa System.currentTimeMillis() que depende del reloj del sistema operativo - y está sujeto a cambios cuando el usuario cambia la fecha y hora del sistema.

Debe utilizar System.nanoTime(), que tiene las siguientes propiedades:

/** 
* Returns the current value of the most precise available system 
* timer, in nanoseconds. 
* 
* <p>This method can only be used to measure elapsed time and is 
* not related to any other notion of system or wall-clock time. 
* The value returned represents nanoseconds since some fixed but 
* arbitrary time (perhaps in the future, so values may be 
* negative). This method provides nanosecond precision, but not 
* necessarily nanosecond accuracy. No guarantees are made about 
* how frequently values change. Differences in successive calls 
* that span greater than approximately 292 years (2<sup>63</sup> 
* nanoseconds) will not accurately compute elapsed time due to 
* numerical overflow. 
* 
* <p> For example, to measure how long some code takes to execute: 
* <pre> 
* long startTime = System.nanoTime(); 
* // ... the code being measured ... 
* long estimatedTime = System.nanoTime() - startTime; 
* </pre> 
* 
* @return The current value of the system timer, in nanoseconds. 
* @since 1.5 
*/ 
public static native long nanoTime(); 

Esto no puede ser manipulada con sólo cambiar la fecha del sistema.

+0

Perfecto, gracias. – FoppyOmega

+1

¿Alguien sabe el equivalente para iOS SDK? – Tocco

+0

Una desventaja es que el nanoTime se reiniciará cuando se restablezca la CPU. Eso significa que no puede medir el tiempo transcurrido cuando el teléfono está apagado. – sjkm

Cuestiones relacionadas