Skip to content

kivy-garden/garden.joystick

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kivy Garden: Joystick

Touch-friendly, analog-style gamepad controls for Kivy.

Example
(Note: touch events are not actually shared between joysticks, collision detection was disabled during this recording in order to keep it short)

 

Widget Properties:

See joystick.py for further reference.

Joystick Data:

  • pad, pad_x, pad_y: The position of the pad, relative to the center of the joystick.
  • magnitude: The distance of the pad from the center of the joystick. Use with radians or angle to get polar coordinates.
  • radians & angle: The radians/degrees of the joystick in relation to the x-axis.

Options:

  • sticky: False by default. When True, the pad will maintain its final position after on_touch_up. Otherwise, the pad will rebound to the center of the joystick on_touch_up.

Style:

  • The joystick is composed of 3 circles, two for the base (inner & outer) and one for the pad. Each of the circles has properties for size, background color, outline color, & outline width. Check out the JoystickDemo for some example style configurations.

 

Usage:

@ Python:

from kivy.app import App
from kivy.garden.joystick import Joystick
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.label import Label

class DemoApp(App):
  def build(self):
    self.root = BoxLayout()
    self.root.padding = 50
    joystick = Joystick()
    joystick.bind(pad=self.update_coordinates)
    self.root.add_widget(joystick)
    self.label = Label()
    self.root.add_widget(self.label)
  def update_coordinates(self, joystick, pad):
    x = str(pad[0])[0:5]
    y = str(pad[1])[0:5]
    radians = str(joystick.radians)[0:5]
    magnitude = str(joystick.magnitude)[0:5]
    angle = str(joystick.angle)[0:5]
    text = "x: {}\ny: {}\nradians: {}\nmagnitude: {}\nangle: {}"
    self.label.text = text.format(x, y, radians, magnitude, angle)

DemoApp().run()

@ KV:

#: import Joystick kivy.garden.joystick.Joystick

BoxLayout:

  Joystick:
    sticky: False
    outer_size: 1
    inner_size: 0.75
    pad_size:   0.5
    outer_line_width: 0.01
    inner_line_width: 0.01
    pad_line_width:   0.01
    outer_background_color: (0.75, 0.75, 0.75, 0.3)
    outer_line_color:       (0.25, 0.25, 0.25, 0.3)
    inner_background_color: (0.75, 0.75, 0.75, 0.1)
    inner_line_color:       (0.7,  0.7,  0.7,  0.1)
    pad_background_color:   (0.4,  0.4,  0.4,  0.3)
    pad_line_color:         (0.35, 0.35, 0.35, 0.3)

About

A on screen joystick for Kivy

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages