|
|
Control and debugger UI for HatariContents:
IntroductionHatari UI is an out-of-process user interface for the Hatari emulator and its built-in debugger which can (optionally) embed the Hatari emulator window. Having the UI in another process allows doing it with a higher level language and avoiding adding GUI toolkit dependencies to Hatari itself. The UI is done with PyGtk i.e. in Python language, using the Gtk widget set. It's an additional UI, the built-in Hatari SDL UI isn't being replaced or going anywhere! Why another UI?While the built-in SDL UI for Hatari has its good points, it has also many minor shortcomings:
As you can see from the screenshots, the features offered by the new UI are nice also on desktops, but the configurability is especially important for devices that have constrained input methods; limited set of keys and e.g. high DPI touchscreen. Something like this UI is really a must on devices with no right or middlebutton, where use of stylus or finger makes double clicks hard because the pixels are so small that hitting the same place twice is not easy and which lacks standard Atari keys. One of the targets for the UI configurability and features is Nokia N8x0 (Linux) devices with 226 DPI 800x480 touchscreen and limited number of keys. This reflects slightly in the UI design too. For example text pasting is done in separate dialog instead of in an inline control and one can easily add buttons for synthetizing specific key presses. Current features
See screenshots for more details. Future featuresThere are several other features that would be nice in the new UI:
Known issuesThere are some minor issues which cannot be handled in an external UI without additional support from Hatari:
Getting Hatari UIHatari is available from major Linux distributions and Hatari UI is included with it. The latest version can be gotten from the Hatari Mercurial repository under the python-ui directory: http://hg.tuxfamily.org/mercurialroot/hatari/hatari/file/tip/python-ui. In Debian and Ubuntu distributions Mercurial is in "mercurial"
package. After installing it, you can read quick instructions: http://mercurial.selenic.com/wiki/QuickStart
and get Hatari sources with: PortabilityBesides Linux, the UI could eventually be used even on Windows by first installing the PyGtk dependencies listed on (otherwise unrelated) Gramps application Windows dependencies page. Additionally the Hatari control socket code needs to be ported to Windows (i.e. use WinSock or have proper Cygwin build of Hatari with unix domain socket support). OSX shouldn't be a problem, under its UI glitz it's mostly BSD unix. ScreenshotsLatest version screenshotLatest Hatari UI version uses standard Gtk menu and toolbars instead of the button boxes used in older versions. You can still configure the buttons included to the top / bottom / left / right of the Hatari screen though.
hatari-ui.py --embed --right "about,|,run,pause,forward,|,reset,|,quit" Older versions screenshots
hatari-ui.py --embed --top "about,run,pause,reset,screenshot,setup,quit" --panel "Input,..." --panel "Speed settings,..." --bottom "debug,trace,peripherals,Speed settings,Input"
hatari-ui.py --top "about,run,pause,quit" --panel "Function keys,..." --panel "Other keys,..." --right "setup,debug,trace,Function keys,Other keys" --bottom "sound,spec512,|,fastforward,|,frameskip"
--panel "Speed settings,frameskip,>,fastforward,|,spec512,|,sound,>,close"
Command line usageHatari UI v0.9 ============== Usage: hatariui.py [options] [floppy image] Options: -h, --help this help -n, --nomenu omit menus -e, --embed embed Hatari window in middle of controls -f, --fullscreen start in fullscreen -l, --left <controls> toolbar at left -r, --right <controls> toolbar at right -t, --top <controls> toolbar at top -b, --bottom <controls> toolbar at bottom -p, --panel <name>,<controls> separate window with given name and controls Available (toolbar) controls: | Separator between controls > Next toolbar in panel windows recanim Record animation floppy Floppy images recsound Record YM/Wav pause Pause Hatari to save battery run (Re-)run Hatari display Display settings sound Sound settings path Device & save file paths sconfig Save configuration load Load emulation snapshot trace Hatari tracing setup save Save emulation snapshot reset Warm or cold reset Hatari machine Hatari st/e/tt/falcon configuration about Hatari UI information shot Grab a screenshot full Toggle whether Hatari is fullscreen device Toggle Midi, Printer, RS232 peripherals input Simulate text input and mouse clicks debug Activate Hatari debugger forward Whether to fast forward Hatari (needs fast machine) quit Quit Hatari UI lconfig Load configuration joystick Joystick settings <panel name> Button for the specified panel window <name>=<string/code> Synthetize string or single key <code> You can have as many panels as you wish. For each panel you need to add a control with the name of the panel (see "MyPanel" below). For example: hatariui.py --embed \ -t "about,run,pause,quit" \ -p "MyPanel,Macro=Test,Undo=97,Help=98,>,F1=59,F2=60,F3=61,F4=62,>,close" \ -r "paste,debug,trace,machine,MyPanel" \ -b "sound,|,fastforward,|,fullscreen" if no options are given, the UI uses basic controls. KeycodesTo configure the keys, you need Atari keycode map, here's one for ST:
|
Copyright © 2006-2017 by Eero Tamminen