inputevent.rst 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. .. _doc_inputevent:
  2. Using InputEvent
  3. ================
  4. What is it?
  5. -----------
  6. Managing input is usually complex, no matter the OS or platform. To ease
  7. this a little, a special built-in type is provided, :ref:`InputEvent <class_InputEvent>`.
  8. This datatype can be configured to contain several types of input
  9. events. Input events travel through the engine and can be received in
  10. multiple locations, depending on the purpose.
  11. Here is a quick example, closing your game if the escape key is hit:
  12. .. tabs::
  13. .. code-tab:: gdscript GDScript
  14. func _unhandled_input(event):
  15. if event is InputEventKey:
  16. if event.pressed and event.scancode == KEY_ESCAPE:
  17. get_tree().quit()
  18. .. code-tab:: csharp
  19. public override void _UnhandledInput(InputEvent @event)
  20. {
  21. if (@event is InputEventKey eventKey)
  22. if (eventKey.Pressed && eventKey.Scancode == (int)KeyList.Escape)
  23. GetTree().Quit();
  24. }
  25. However, it is cleaner and more flexible to use the provided :ref:`InputMap <class_InputMap>` feature,
  26. which allows you to define input actions and assign them different keys. This way,
  27. you can define multiple keys for the same action (e.g. the keyboard escape key and the start button on a gamepad).
  28. You can then more easily change this mapping in the project settings without updating your code,
  29. and even build a key mapping feature on top of it to allow your game to change the key mapping at runtime!
  30. You can set up your InputMap under **Project > Project Settings > Input Map** and then use those actions like this:
  31. .. tabs::
  32. .. code-tab:: gdscript GDScript
  33. func _process(delta):
  34. if Input.is_action_pressed("ui_right"):
  35. # Move right.
  36. .. code-tab:: csharp
  37. public override void _Process(float delta)
  38. {
  39. if (Input.IsActionPressed("ui_right"))
  40. {
  41. // Move right.
  42. }
  43. }
  44. How does it work?
  45. -----------------
  46. Every input event is originated from the user/player (though it's
  47. possible to generate an InputEvent and feed them back to the engine,
  48. which is useful for gestures). The OS object for each platform will read
  49. events from the device, then feed them to MainLoop. As :ref:`SceneTree <class_SceneTree>`
  50. is the default MainLoop implementation, events are fed to it. Godot
  51. provides a function to get the current SceneTree object :
  52. **get_tree()**.
  53. But SceneTree does not know what to do with the event, so it will give
  54. it to the viewports, starting by the "root" :ref:`Viewport <class_Viewport>` (the first
  55. node of the scene tree). Viewport does quite a lot of stuff with the
  56. received input, in order:
  57. .. image:: img/input_event_flow.png
  58. 1. First of all, the standard :ref:`Node._input() <class_Node_method__input>` function
  59. will be called in any node that overrides it (and hasn't disabled input processing with :ref:`Node.set_process_input() <class_Node_method_set_process_input>`).
  60. If any function consumes the event, it can call :ref:`SceneTree.set_input_as_handled() <class_SceneTree_method_set_input_as_handled>`, and the event will
  61. not spread any more. This ensures that you can filter all events of interest, even before the GUI.
  62. For gameplay input, :ref:`Node._unhandled_input() <class_Node_method__unhandled_input>` is generally a better fit, because it allows the GUI to intercept the events.
  63. 2. Second, it will try to feed the input to the GUI, and see if any
  64. control can receive it. If so, the :ref:`Control <class_Control>` will be called via the
  65. virtual function :ref:`Control._gui_input() <class_Control_method__gui_input>` and the signal
  66. "gui_input" will be emitted (this function is re-implementable by
  67. script by inheriting from it). If the control wants to "consume" the
  68. event, it will call :ref:`Control.accept_event() <class_Control_method_accept_event>` and the event will
  69. not spread any more. Use the :ref:`Control.mouse_filter <class_Control_property_mouse_filter>`
  70. property to control whether a :ref:`Control <class_Control>` is notified
  71. of mouse events via :ref:`Control._gui_input() <class_Control_method__gui_input>`
  72. callback, and whether these events are propagated further.
  73. 3. If so far no one consumed the event, the unhandled input callback
  74. will be called if overridden (and not disabled with
  75. :ref:`Node.set_process_unhandled_input() <class_Node_method_set_process_unhandled_input>`).
  76. If any function consumes the event, it can call :ref:`SceneTree.set_input_as_handled() <class_SceneTree_method_set_input_as_handled>`, and the
  77. event will not spread any more. The unhandled input callback is ideal for full-screen gameplay events, so they are not received when a GUI is active.
  78. 4. If no one wanted the event so far, and a :ref:`Camera <class_Camera>` is assigned
  79. to the Viewport with :ref:`Object Picking <class_viewport_property_physics_object_picking>` turned on, a ray to the physics world (in the ray direction from
  80. the click) will be cast. (For the root viewport, this can also be enabled in :ref:`Project Settings <class_ProjectSettings_property_physics/common/enable_object_picking>`) If this ray hits an object, it will call the
  81. :ref:`CollisionObject._input_event() <class_CollisionObject_method__input_event>` function in the relevant
  82. physics object (bodies receive this callback by default, but areas do
  83. not. This can be configured through :ref:`Area <class_Area>` properties).
  84. 5. Finally, if the event was unhandled, it will be passed to the next
  85. Viewport in the tree, otherwise it will be ignored.
  86. When sending events to all listening nodes within a scene, the viewport
  87. will do so in a reverse depth-first order: Starting with the node at
  88. the bottom of the scene tree, and ending at the root node:
  89. .. image:: img/input_event_scene_flow.png
  90. GUI events also travel up the scene tree but, since these events target
  91. specific Controls, only direct ancestors of the targeted Control node receive the event.
  92. In accordance with Godot's node-based design, this enables
  93. specialized child nodes to handle and consume particular events, while
  94. their ancestors, and ultimately the scene root, can provide more
  95. generalized behavior if needed.
  96. Anatomy of an InputEvent
  97. ------------------------
  98. :ref:`InputEvent <class_InputEvent>` is just a base built-in type, it does not represent
  99. anything and only contains some basic information, such as event ID
  100. (which is increased for each event), device index, etc.
  101. There are several specialized types of InputEvent, described in the table below:
  102. +-------------------------------------------------------------------+--------------------+-----------------------------------------+
  103. | Event | Type Index | Description |
  104. +-------------------------------------------------------------------+--------------------+-----------------------------------------+
  105. | :ref:`InputEvent <class_InputEvent>` | NONE | Empty Input Event. |
  106. +-------------------------------------------------------------------+--------------------+-----------------------------------------+
  107. | :ref:`InputEventKey <class_InputEventKey>` | KEY | Contains a scancode and Unicode value, |
  108. | | | as well as modifiers. |
  109. +-------------------------------------------------------------------+--------------------+-----------------------------------------+
  110. | :ref:`InputEventMouseButton <class_InputEventMouseButton>` | MOUSE_BUTTON | Contains click information, such as |
  111. | | | button, modifiers, etc. |
  112. +-------------------------------------------------------------------+--------------------+-----------------------------------------+
  113. | :ref:`InputEventMouseMotion <class_InputEventMouseMotion>` | MOUSE_MOTION | Contains motion information, such as |
  114. | | | relative, absolute positions and speed. |
  115. +-------------------------------------------------------------------+--------------------+-----------------------------------------+
  116. | :ref:`InputEventJoypadMotion <class_InputEventJoypadMotion>` | JOYSTICK_MOTION | Contains Joystick/Joypad analog axis |
  117. | | | information. |
  118. +-------------------------------------------------------------------+--------------------+-----------------------------------------+
  119. | :ref:`InputEventJoypadButton <class_InputEventJoypadButton>` | JOYSTICK_BUTTON | Contains Joystick/Joypad button |
  120. | | | information. |
  121. +-------------------------------------------------------------------+--------------------+-----------------------------------------+
  122. | :ref:`InputEventScreenTouch <class_InputEventScreenTouch>` | SCREEN_TOUCH | Contains multi-touch press/release |
  123. | | | information. (only available on mobile |
  124. | | | devices) |
  125. +-------------------------------------------------------------------+--------------------+-----------------------------------------+
  126. | :ref:`InputEventScreenDrag <class_InputEventScreenDrag>` | SCREEN_DRAG | Contains multi-touch drag information. |
  127. | | | (only available on mobile devices) |
  128. +-------------------------------------------------------------------+--------------------+-----------------------------------------+
  129. | :ref:`InputEventAction <class_InputEventAction>` | SCREEN_ACTION | Contains a generic action. These events |
  130. | | | are often generated by the programmer |
  131. | | | as feedback. (more on this below) |
  132. +-------------------------------------------------------------------+--------------------+-----------------------------------------+
  133. Actions
  134. -------
  135. An InputEvent may or may not represent a pre-defined action. Actions are
  136. useful because they abstract the input device when programming the game
  137. logic. This allows for:
  138. - The same code to work on different devices with different inputs (e.g.,
  139. keyboard on PC, Joypad on console).
  140. - Input to be reconfigured at run-time.
  141. Actions can be created from the Project Settings menu in the Actions
  142. tab.
  143. Any event has the methods :ref:`InputEvent.is_action() <class_InputEvent_method_is_action>`,
  144. :ref:`InputEvent.is_pressed() <class_InputEvent_method_is_pressed>` and :ref:`InputEvent <class_InputEvent>`.
  145. Alternatively, it may be desired to supply the game back with an action
  146. from the game code (a good example of this is detecting gestures).
  147. The Input singleton has a method for this:
  148. :ref:`Input.parse_input_event() <class_input_method_parse_input_event>`. You would normally use it like this:
  149. .. tabs::
  150. .. code-tab:: gdscript GDScript
  151. var ev = InputEventAction.new()
  152. # Set as move_left, pressed.
  153. ev.action = "move_left"
  154. ev.pressed = true
  155. # Feedback.
  156. Input.parse_input_event(ev)
  157. .. code-tab:: csharp
  158. var ev = new InputEventAction();
  159. // Set as move_left, pressed.
  160. ev.SetAction("move_left");
  161. ev.SetPressed(true);
  162. // Feedback.
  163. Input.ParseInputEvent(ev);
  164. InputMap
  165. --------
  166. Customizing and re-mapping input from code is often desired. If your
  167. whole workflow depends on actions, the :ref:`InputMap <class_InputMap>` singleton is
  168. ideal for reassigning or creating different actions at run-time. This
  169. singleton is not saved (must be modified manually) and its state is run
  170. from the project settings (project.godot). So any dynamic system of this
  171. type needs to store settings in the way the programmer best sees fit.