Hajime Hoshi
52567c459f
ebiten: Remove unnecessary casts
2021-07-23 00:57:17 +09:00
Hajime Hoshi
2503323557
internal/driver: Add FPSMode
...
Updates #1556
2021-07-23 00:47:09 +09:00
Hajime Hoshi
c28bcc26fc
internal/clock: Rename UncappedTPS -> SyncWithFPS
...
Closes #1726
2021-07-22 22:46:24 +09:00
Hajime Hoshi
da2db2f54e
ebiten: Add comments about SetCursorShape / CursorShape
2021-07-22 19:17:14 +09:00
Hajime Hoshi
1c3eaba6e3
ebiten: Fix wrong comments
2021-07-22 19:15:11 +09:00
Hajime Hoshi
92bc5c1908
audio: Add (*Context).NewPlayer and (*Context).NewPlayerFromBytes
...
Closes #1708
2021-07-22 16:41:04 +09:00
Hajime Hoshi
1dc8002689
examples: Reduce global variables
...
Closes #1669
2021-07-22 01:38:55 +09:00
Hajime Hoshi
c2a5f4ab94
audio/internal/readerdriver: Add comments about Windows
...
Updates #1710
2021-07-21 23:23:12 +09:00
Hajime Hoshi
5750c48a3b
audio/internal/oboe: Remove 'generate' build tag
2021-07-21 21:33:31 +09:00
Hajime Hoshi
e9d0c84803
audio/internal/oboe: Add //go:build
2021-07-21 21:25:30 +09:00
Hajime Hoshi
50320eeb5b
internal/glfw: Bug fix: Crash after disconnecting a gamepad on Windows (Wine)
2021-07-21 17:50:47 +09:00
Hajime Hoshi
d7bedd165a
internal/driver: Bug fix: Compile error for browsers
2021-07-21 17:20:09 +09:00
Hajime Hoshi
93a156a718
internal/uidriver/glfw: Use glfwGameGamepadState
...
This change replaces the usage of gamepaddb package with glfwGetGamepadState.
Updates #1557
2021-07-21 16:09:30 +09:00
Hajime Hoshi
ee4ec5047e
internal/gamepaddb: Support general XInput devices
2021-07-21 14:38:47 +09:00
Hajime Hoshi
291a38f2e2
Remove nintendoswitch package
...
Use the standard gamepad layout instead.
Closes #1720
2021-07-21 01:47:49 +09:00
Hajime Hoshi
1fce527414
internal/uidriver/js: Use the same gamepad API on go2cpp
2021-07-20 23:10:56 +09:00
Hajime Hoshi
8656786721
internal/uidriver/js: Refactoring: Detect the standard layout at update
2021-07-20 21:56:15 +09:00
Hajime Hoshi
c54418c3e4
examples/flappy: Use A/B buttons for the standard gamepad layout
...
Also this change limits the available keys.
2021-07-20 20:53:19 +09:00
Hajime Hoshi
984275d0a0
examples/blocks: Skip the gamepad configuration if a standard layout is available
2021-07-20 03:48:01 +09:00
Hajime Hoshi
d32b58d050
examples/blocks/blocks: Unify the terms 'abstract' and 'virtual'
2021-07-20 03:02:37 +09:00
Hajime Hoshi
5004fdcf02
ebiten: Update comments
2021-07-20 02:53:13 +09:00
Hajime Hoshi
f192971080
ebiten: Rename HasGamepadStandardLayoutMapping -> IsStandardGamepadLayoutAvailable
...
Updates #1557
2021-07-20 02:46:12 +09:00
Hajime Hoshi
51f83b1527
inpututil: Add APIs for the standard gamepad layout
...
This change adds these APIs to inpututil:
* IsStandardGamepadButtonJustPressed
* IsStandardGamepadButtonJustReleased
* StandardGamepadButtonPressDuration
Closes #1557
2021-07-20 02:37:12 +09:00
Hajime Hoshi
aa694be6f6
ebiten: Add the standard gamepad layout
...
This change introduces the standard gamepad layout. This changes adds
these APIs:
* func HasGamepadStandardLayoutMapping
* func IsGamepadStandardButtonPressed
* func GamepadStandardAxisValue
* type StandardGamepadButton
* type StandardGamepadAxis
The standard gamepad layout is based on the web standard. See
https://www.w3.org/TR/gamepad/#remapping .
On desktops, the SDL's gamecontrllerdb.txt is used. If the gamepad is
listed in the text file, the mapping works. GLFW's mapping featrue is
not used.
On browsers, the property of a gamepad 'mapping' is used. When the
mapping value is 'standard', the gamepad is recognized to have the
standard mapping.
On mobiles, the implementation is still WIP.
Updates #1557
2021-07-20 01:32:28 +09:00
Hajime Hoshi
f882dbda77
ebiten: Fix comments
2021-07-20 01:12:17 +09:00
Hajime Hoshi
fcfdf9b2ba
Update URLs
2021-07-19 23:09:27 +09:00
Hajime Hoshi
f305a04453
cmd/ebitenmobile: Update URLs
2021-07-19 23:00:41 +09:00
Hajime Hoshi
a6fe7801ff
internal/uidriver/glfw: Rename gamePad -> gamepad
2021-07-19 22:25:43 +09:00
Hajime Hoshi
6b949cede8
examples/gamepad: Always show signs for axis values
2021-07-19 02:19:42 +09:00
Hajime Hoshi
700052519c
examples: Use GamepadAxisValue
...
Updates #1719
2021-07-19 01:31:20 +09:00
Hajime Hoshi
dbcb220742
ebiten: Add GamepadAxisValue replacing GamepadAxis
...
Updates #1718
Closes #1719
2021-07-19 01:22:35 +09:00
Hajime Hoshi
bd5cc145df
ebiten: Refactoring: Use aliases for GamepadButton and MouseButton
2021-07-19 00:57:35 +09:00
Hajime Hoshi
af150ad67b
examples/gamepad: Show SDL ID on the terminal
2021-07-18 15:41:20 +09:00
Hajime Hoshi
a9241a45c6
vector: Add Dir
...
Updates #844
2021-07-17 16:42:14 +09:00
Hajime Hoshi
70ef5e7d5b
vector: Add Arc
...
Updates #844
2021-07-17 01:34:06 +09:00
Hajime Hoshi
873bb35587
vector: Add ArcTo
...
Updates #844
2021-07-16 22:52:32 +09:00
Hajime Hoshi
cea0aa72cb
vector: Rename AppendVerticesAndIndices to AppendVerticesAndIndicesForFilling
...
Updates #844
2021-07-16 17:20:09 +09:00
Hajime Hoshi
e24eecd4a6
vector: Improve the quality of QuadTo and CubicTo
...
Updates #844
2021-07-16 17:11:38 +09:00
Hajime Hoshi
01d6fd3c72
cmd/ebitenmobile: Update gomobile
2021-07-16 15:16:40 +09:00
Hajime Hoshi
342bf6ae7e
Update GLFW: suppress joystick issue at PollEvents
...
Updates #1229
2021-07-15 11:19:39 +09:00
Hajime Hoshi
ec5b034cbf
Update GLFW: suppress joystick issue (again)
...
Updates #1229
2021-07-15 01:02:57 +09:00
Hajime Hoshi
66dbca7fdd
Update GLFW: suppress joystick issue
...
Updates #1229
2021-07-14 23:54:48 +09:00
Hajime Hoshi
9e024dc337
vector: Rename arguments
2021-07-14 23:25:59 +09:00
Hajime Hoshi
50d2d7ed61
internal/graphicsdriver/opengl: Remove unused code using PBO
...
Updates #1678
2021-07-14 21:51:27 +09:00
Hajime Hoshi
b249fe889d
Update Go to 1.17.0-rc1 for testing
2021-07-14 12:55:19 +09:00
Hajime Hoshi
7417eb677f
Update Go versions on GitHub actions
2021-07-13 08:01:31 +09:00
Hajime Hoshi
5c4885c988
inpututil: Add AppendJustConnectedTouchIDs
...
Closes #1705
2021-07-10 23:30:04 +09:00
Hajime Hoshi
e8ea4046cb
inpututil: Add AppendJustConnectedGamepadIDs
...
Updates #1705
2021-07-10 22:32:19 +09:00
Hajime Hoshi
a79c287bb7
inpututil: Add AppendPressedKeys
...
Updates #1705
2021-07-10 22:18:15 +09:00
Hajime Hoshi
502455f5b2
audio: Bug fix: Deadlock in ensurePlayer
...
Updates #1709
2021-07-10 19:52:15 +09:00