unascribed / SymbolicControllerDB

The SDL controller DB is how controllers behave. What if we had a database of how they look?

Home Page:https://unascribed.github.io/SymbolicControllerDB/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Symbolic Controller DB

The SDL controller DB provides useful abstract descriptions of where buttons are and how controllers behave, but hammers them all into the terminology of an Xbox 360 controller.

Showing users inputs on their controller using only the SDL DB is a poor and messy experience for users and developers alike.

What if we had a free database of what controllers look like, in addition to how they're shaped and interfaced with?

This database is offered under the same permissive license as the SDL controller DB it's designed to be used alongside; the zlib license. Your obligations using this database are the same as using the SDL database.

Contributing

You will need to know the SDL GUIDs of your controller, such as 05000000050b00000045000040000000. Create a file at e.g. src/asus-gamepad.json describing the controller. The filename is not included in the release JSON; it's just an identifier during authoring. Check src/_example.json for the general structure.

See symbols.json for an iteration of all currently defined symbolic colors and buttons, and their default values.

Pull requests very welcome. A database like this is only as useful as the number of controllers it describes.

Not sure how to write the needed JSON file? Open an issue with the SDL GUID of your controller and a picture of it from the relevant angles; from in front and above, on most controllers. If the controller is designed for some specific software or console, also include information on how its buttons are displayed there.

Usage

Unlike the SDL DB, this DB is not tied to a particular software project; the "reference library" is the implementation of this in unvkit, my 2D Java game engine that uses GLFW. But this is not the "one true library". Also available is www/build.js in this repo, which creates the demo web page.

Under Releases, a merged JSON file containing an array of every defined controller with comments removed is offered. The structure is, roughly:

{
	"controllers": [
		{
			// controller definition like those in src
			"name": "Foo Bar Inc. Gameius Padius",
			"guids": [
				"01234567890123456789012345678901",
				"12345678901234567890123456789012"
			],
			"conventions": {
				// key is arbitrary, value is SDL name
				"accept": "a",
				"back": "b"
			},
			"buttons": {
				// key is SDL name
				"a": {
					// all values are as defined in symbols
					"type": "A",
					"bg": "white",
					"fg": "purple"
				}
				// ...
			}
			// _comment keys are removed and string buttons are resolved
		}
	],
	"symbols": {
		// the contents of symbols.json with _comment keys removed, e.g.
		"power": {
			"shape": "circle",
			"icon": "power",
			"text": "⏻",
			"text_basic": "Power"
		}
	}
}

Prior Art

I am aware of cxong/SDL_JoystickButtonNames, but it has few controllers and I disagree with its design decisions. The choice to always describe buttons textually rather than symbolically causes confusion between e.g. X and Cross buttons, and doesn't provide room for icons. Additionally, its explicit RGB values are hard to make mesh with a dark design.

It also does not explain whether the colors are the color of the button, or the legend. This database describes everything symbolically, giving the UI designer complete freedom of how to draw the icons, and the freedom to choose colors that mesh best with their design.

Additionally, the SDL DB format is hard to read, is very poor for authoring, and is highly prone to merge conflicts. This repo chooses one JSON file per controller as an authoring format.

About

The SDL controller DB is how controllers behave. What if we had a database of how they look?

https://unascribed.github.io/SymbolicControllerDB/

License:zlib License


Languages

Language:JSON 70.5%Language:Handlebars 19.7%Language:JavaScript 8.2%Language:Shell 1.6%