Package com.jme3.input.dummy
Class DummyInput
java.lang.Object
com.jme3.input.dummy.DummyInput
- All Implemented Interfaces:
Input
- Direct Known Subclasses:
DummyKeyInput
,DummyMouseInput
DummyInput as an implementation of
Input
that raises no
input events.-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
destroy()
Ceases listening to events from the device.long
void
Initializes the native side to listen into events from the device.boolean
void
setInputListener
(RawInputListener listener) Sets the input listener to receive events from this device.void
update()
Queries the device for input.
-
Field Details
-
inited
protected boolean inited
-
-
Constructor Details
-
DummyInput
public DummyInput()
-
-
Method Details
-
initialize
public void initialize()Description copied from interface:Input
Initializes the native side to listen into events from the device.- Specified by:
initialize
in interfaceInput
-
update
public void update()Description copied from interface:Input
Queries the device for input. All events should be sent to the RawInputListener set with setInputListener. -
destroy
public void destroy()Description copied from interface:Input
Ceases listening to events from the device. -
isInitialized
public boolean isInitialized()- Specified by:
isInitialized
in interfaceInput
- Returns:
- True if the device has been initialized and not destroyed.
- See Also:
-
setInputListener
Description copied from interface:Input
Sets the input listener to receive events from this device. The appropriate events should be dispatched through the callbacks in RawInputListener.- Specified by:
setInputListener
in interfaceInput
- Parameters:
listener
- the desired listener
-
getInputTimeNanos
public long getInputTimeNanos()- Specified by:
getInputTimeNanos
in interfaceInput
- Returns:
- The current absolute time as nanoseconds. This time is expected to be relative to the time given in InputEvents time property.
-