PyroFlareX / Zymon

Pokemon clone. Inspired by OpMon. Wanted to try it myself to see a different way of doing things.
MIT License
3 stars 0 forks source link

Redo Input System #8

Open PyroFlareX opened 5 years ago

PyroFlareX commented 5 years ago

This should be a global wrapper of boolean inputs. Should be platform independent, implemented via SFML or the standard library. Having this polled in another thread should be fine.

Requirements: Thread safe (mostly) Global Either returns a struct of bools or modifies a pointer of said struct

Optional (but should be done): Struct is only of Virtual Inputs Config file is loaded to determine which real inputs correspond to each virtual input Have alternate function which returns true if virtual input specified in argument is pressed.

Also: Joystick support?

PyroFlareX commented 5 years ago

Mostly finished. Need to add config file, and joystick support.