|
Panda3D
|
Public Member Functions | |
| __init__ (self) | |
| clear (self) | |
| getDelta (self) | |
| getFrameNetworkTime (self, bits=16, ticksPerSec=NetworkTimePrecision) | |
| getLastResync (self) | |
| getRealNetworkTime (self, bits=16, ticksPerSec=NetworkTimePrecision) | |
| Convenience functions ###. | |
| getUncertainty (self) | |
| localElapsedTime (self, networkTime, bits=16, ticksPerSec=NetworkTimePrecision) | |
| localToNetworkTime (self, localTime, bits=16, ticksPerSec=NetworkTimePrecision) | |
| networkToLocalTime (self, networkTime, now=None, bits=16, ticksPerSec=NetworkTimePrecision) | |
| Primary interface functions ###. | |
| newDelta (self, localTime, newDelta, newUncertainty, trustNew=1) | |
| peerToPeerResync (self, avId, timestamp, serverTime, uncertainty) | |
| resynchronize (self, localTime, networkTime, newUncertainty, trustNew=1) | |
Public Member Functions inherited from DirectObject | |
| __init__ (self) | |
| accept (self, event, method, extraArgs=[]) | |
| acceptOnce (self, event, method, extraArgs=[]) | |
| addTask (self, *args, **kwargs) | |
| detectLeaks (self) | |
| doMethodLater (self, *args, **kwargs) | |
| getAllAccepting (self) | |
| ignore (self, event) | |
| ignoreAll (self) | |
| isAccepting (self, event) | |
| isIgnoring (self, event) | |
| removeAllTasks (self) | |
| removeTask (self, taskOrName) | |
Public Attributes | |
| int | delta = 0 |
| globalClock = ClockObject.getGlobalClock() | |
| float | lastResync = 0.0 |
| uncertainty = None | |
Static Public Attributes | |
| notify = DirectNotifyGlobal.directNotify.newCategory('ClockDelta') | |
Static Public Attributes inherited from DirectObject | |
| accept_once = acceptOnce | |
| add_task = addTask | |
| detect_leaks = detectLeaks | |
| do_method_later = doMethodLater | |
| get_all_accepting = getAllAccepting | |
| ignore_all = ignoreAll | |
| is_accepting = isAccepting | |
| is_ignoring = isIgnoring | |
| remove_all_tasks = removeAllTasks | |
| remove_task = removeTask | |
Additional Inherited Members | |
Protected Member Functions inherited from DirectObject | |
| _addTask (self, task) | |
| _clearTask (self, task) | |
Protected Attributes inherited from DirectObject | |
| dict | _taskList = {} |
The ClockDelta object converts between universal ("network") time,
which is used for all network traffic, and local time (e.g. as
returned by getFrameTime() or getRealTime()), which is used for
everything else.
| __init__ | ( | self | ) |
| clear | ( | self | ) |
Throws away any previous synchronization information.
| getDelta | ( | self | ) |
| getFrameNetworkTime | ( | self, | |
| bits = 16, | |||
| ticksPerSec = NetworkTimePrecision ) |
Returns the current getFrameTime() expressed as a network time.
| getLastResync | ( | self | ) |
| getRealNetworkTime | ( | self, | |
| bits = 16, | |||
| ticksPerSec = NetworkTimePrecision ) |
Convenience functions ###.
Returns the current getRealTime() expressed as a network time.
| getUncertainty | ( | self | ) |
| localElapsedTime | ( | self, | |
| networkTime, | |||
| bits = 16, | |||
| ticksPerSec = NetworkTimePrecision ) |
localElapsedTime(self, int networkTime) Returns the amount of time elapsed (in seconds) on the client since the server message was sent. Negative values are clamped to zero.
| localToNetworkTime | ( | self, | |
| localTime, | |||
| bits = 16, | |||
| ticksPerSec = NetworkTimePrecision ) |
localToNetworkTime(self, float localTime) Converts the indicated localTime to the corresponding networkTime value.
| networkToLocalTime | ( | self, | |
| networkTime, | |||
| now = None, | |||
| bits = 16, | |||
| ticksPerSec = NetworkTimePrecision ) |
Primary interface functions ###.
networkToLocalTime(self, int networkTime) Converts the indicated networkTime to the corresponding localTime value. The time is assumed to be within +/- 5 minutes of the current local time given in now, or getRealTime() if now is not specified.
| newDelta | ( | self, | |
| localTime, | |||
| newDelta, | |||
| newUncertainty, | |||
| trustNew = 1 ) |
Accepts a new delta and uncertainty pair, understood to represent time as of localTime. Improves our current notion of the time delta accordingly. The return value is true if the new measurement was used, false if it was discarded.
| peerToPeerResync | ( | self, | |
| avId, | |||
| timestamp, | |||
| serverTime, | |||
| uncertainty ) |
Accepts an AI time and uncertainty value from another client, along with a local timestamp value of the message from this client which prompted the other client to send us its delta information. The return value is true if the other client's measurement was reasonably close to our own, or false if the other client's time estimate was wildly divergent from our own; the return value is negative if the test was not even considered (because it happened too soon after another recent request).
| resynchronize | ( | self, | |
| localTime, | |||
| networkTime, | |||
| newUncertainty, | |||
| trustNew = 1 ) |
resynchronize(self, float localTime, int32 networkTime,
float newUncertainty)
Accepts a new networkTime value, which is understood to
represent the same moment as localTime, plus or minus
uncertainty seconds. Improves our current notion of the time
delta accordingly.
| delta = 0 |
| globalClock = ClockObject.getGlobalClock() |
| lastResync = 0.0 |
|
static |
| uncertainty = None |