Commit graph

261 commits

Author SHA1 Message Date
Philip Trauner
3912d9f43f Constants, refactoring, listen to feedback, fixed deadlock, revived address input 2017-02-01 22:19:25 +01:00
Philip Trauner
74a7737d05 Added error feedback for run_program and stop_programs
Previously the client had no way of knowing if the controller actually executed an action.
Now it does.
2017-02-01 22:17:59 +01:00
Philip Trauner
278caced99 Target now an object, locking for sensor readouts, re-organized controller menu, ...
Added shutdown and reboot actions, added keyboard shortcut for stop_programs, ...
Implemented buffered std_stream output for multiple controllers, sensor readout toggle now toggle view instead of window, ...

Sensor phantoms now deactivated themselves when they aren't in focus
2017-01-23 09:36:47 +01:00
Philip Trauner
f9ccbd9ae2 Added sensor locking, stop_programs, shutdown, reboot, made run_program async
Sensor locking: This fixes the iteration errors that occured during polling in case of subscrive/unsubscribe events.
Pipes for shutdown, reboot.
Pipe to stop all botball programs.

run_program blocked all further communication during program runtime, fixed now.
2017-01-23 09:20:59 +01:00
Philip Trauner
e9f34ae3b0 Added stop program shortcut 2017-01-23 09:20:26 +01:00
Philip Trauner
8afed76d15 Added stop_programs, shutdown and reboot pipes 2017-01-23 09:11:29 +01:00
Philip Trauner
d875795f27 Rewrote sensor readouts, general refactor, added identification action
Sensor readouts are now displayed as soon as new data is avaliable (no useless fetcher thread anymore).
Invalid sensor ports are now marked.

Keyboard shortcuts now validate state before running the action.

Added identification action.
2017-01-20 09:24:06 +01:00
Philip Trauner
dfb1652dc8 Fixed syntax error ಠ_ಠ 2017-01-18 13:06:51 +01:00
Philip Trauner
2d0401506c Fixed ListPrograms, initial program execution support
ListPrograms had a special case for dev-envs that listed /bin instead of the supplied program folder.
Initial run_program implementation, stopping does not work yet.
2017-01-11 22:31:16 +01:00
Philip Trauner
8bf83b655a Initial inline sensor readout support, initial program execution
Inline sensor readouts work, but the code is ugly and it wastes resources.

Initial program execution with keybinding is also included.
2017-01-11 22:28:49 +01:00
Philip Trauner
da4fc67b8b Removed std_stream, now a client-side pipe 2017-01-11 22:27:52 +01:00
Philip Trauner
2970f4cb2d Added keybindings for program execution and sensor readouts 2017-01-11 22:25:56 +01:00
Philip Trauner
dc73e3ee64 Removed watchdog 2017-01-11 22:25:07 +01:00
Philip Trauner
625902a763 Fixed program list
Program list always listed the programs of the last avaliable Wallaby.
2016-12-20 22:41:32 +01:00
Philip Trauner
0c5f942a21 Hostname changer error handling, WhoAmI on startup 2016-12-20 22:39:37 +01:00
Philip Trauner
9ffb1dcb86 Added "whoami" route
WhoAmI provides the unique server-side peer id and the os-username to a client
2016-12-20 22:38:34 +01:00
Philip Trauner
2c2633eebd Utilised peer_unavaliable 2016-12-18 23:25:53 +01:00
Philip Trauner
597de36476 Migrated to subscription based peers, added support for program listing
Still some bugs to be fixed related to controller actions.
2016-12-18 23:24:25 +01:00
Philip Trauner
8995fb8e6f Fixed back entries
Back entries were crashing the Sublime API when subtitles were disabled.
They also didn't work properly with submenues. Fixed now of course :)
2016-12-18 23:22:09 +01:00
Philip Trauner
05384b2abb Sped up, removed time, more colors! 2016-12-18 23:21:05 +01:00
Philip Trauner
0934f6fe69 Routes aren't an indexed_dict anymore, piping error handling, piping on by default
Routes are just regular dicts now, which means that their ids are strings and they are bound to the key "routes".
This allows the next feature to work:

Error reporting on disconnected peers.
Define a peer_unavaliable method in your handler and you will be notified when your pipe call has failed due to an unavaliable peer.
Handled in the "meta" route.

Piping has become such an integral feature to Highway that it doesn't make sense to disable it anymore.
This is why the argument is missing in the constructor from now on.
2016-12-18 23:15:31 +01:00
Philip Trauner
d3ac8cf64c Removed piping from parameters, peers now subscription based
Peers can now be subscribed to. Simply getting the current state is still supported.
2016-12-18 23:14:08 +01:00
Philip Trauner
2ca28cba4f Added list_programs
list_programs is a route that can be used to list all runnable programs on the controller. How convenient.
2016-12-16 15:52:53 +01:00
Philip Trauner
260fd121f9 Added dummy pipe for list_programs 2016-12-16 15:51:26 +01:00
Philip Trauner
ef51b29ecb Improved sensor logic, added identify pipe
poll_rate can now be modified by clients
unsubscribe_all call added for disconnecting clients ("unsubscribe")
Improved logic that determines which sensors need to be queried

Identify plays a sound when it receives data
2016-12-07 23:37:12 +01:00
Philip Trauner
7748c30f6a Added line number 2016-12-07 23:36:52 +01:00
Philip Trauner
4eae2567ad Added logic to close routes
Not called on close() yet because of server/client inconsistencies
2016-12-07 23:35:56 +01:00
Philip Trauner
c43ed25410 Corrected debug levels, added identify dummy pipe 2016-12-07 23:34:37 +01:00
Philip Trauner
b7721d89a4 Added play_sound 2016-12-07 23:33:26 +01:00
Philip Trauner
5a8e6b1bbf Added Wallaby identification sound 2016-12-07 20:55:06 +01:00
Philip Trauner
5d1aba5e55 Sensor route initial working version, less ugly code 2016-12-07 19:14:02 +01:00
Philip Trauner
60b9b26d28 Improved error handling on non-existant routes 2016-12-07 19:13:32 +01:00
Philip Trauner
1980d1c06d Peers logic error fix, dummy pipe for sensor 2016-12-07 19:12:35 +01:00
Philip Trauner
160f731281 Fixed syntax error ಠ_ಠ 2016-12-05 23:00:05 +01:00
Philip Trauner
3ced7862ab Added sensor readout code and processes 2016-12-05 22:55:50 +01:00
Philip Trauner
4b1e70d2e5 Added processes route
"processes" is a simple process list for debugging purposes and an ideal pipe demonstration
2016-12-05 22:54:28 +01:00
Philip Trauner
cf57d760de Added dummy pipe for processes 2016-12-05 22:54:01 +01:00
Philip Trauner
cbc1976308 Added peer list and hostname changer, enabled piping
Basic controller interactions now avaliable!
2016-12-02 23:29:45 +01:00
Philip Trauner
4319c2d194 Revamped Subscribe, Peers route fixes, enabled piping
Subscribe was pretty damn ugly code. I wonder why I didn't notice earlier.
2016-12-02 23:26:58 +01:00
Philip Trauner
6ae115a206 Added parameter binding ability for Input
kwargs can now be set on init which allows for additional parameters on events.
Will have to go over all the code to implement a standardised solution.
2016-12-02 23:24:32 +01:00
Philip Trauner
e2bfb79cdf Migration to Highway, incorporate piping, hostname changing
The port of the Wallaby client has kicked off and with it come lots of broken features.
WallabyControl will have to be remade to incorporate piping and routes for sensor readouts as well as wi-fi network selection have to be added.

As a quick piping demo the Hostname changer route was implemented which already works in the Sublime Text client.
2016-12-02 23:20:40 +01:00
Philip Trauner
4d6dcf7d84 Migrated to new init logic, implemented Peers route
Highway requires new init logic to be able to access all currently connected peers.
After a little bit of reverse engineering deemed this to be the least hacky way to obtain access.

Initial version of Peers. This route can be used to retrieve client ids, which are required for piping.
2016-12-01 22:52:57 +01:00
Philip Trauner
37817afa51 Added initial piping support, refactoring
A Highway pipe is a lightweight client -> client connection piped through the server.
The advantages of this approach are obvious:
* No need to implement the concept yourself
* It's incredibly useful

It's opt-in at the moment because it definitely isn't anywhere close to stable and requires a lot of boiler-plate code.
Documentation will be avaliable later on.
2016-12-01 22:46:22 +01:00
Philip Trauner
203d62db0d Improved remove behaviour 2016-11-16 18:53:15 +01:00
Philip Trauner
003bf3aa84 Initial remake efforts, new menu structure, constants
Highway has changed fl0w. In a good way I presume but still: Legacy code has to be updated and made good.
This entails a rework of the menu system which is now officially under way and utilises the new magic features of SublimeMenu.

MORE_CONSTANTS = 1
2016-11-16 18:48:18 +01:00
Philip Trauner
80f984ab28 Fixed imports after Routing merge 2016-11-16 18:47:44 +01:00
Philip Trauner
9ae687e35d Merged into Highway.py 2016-11-16 18:46:41 +01:00
Philip Trauner
0c88b7c161 Merged Routing.py, constants for everything, encoding fixes for js port
Routing.py is no more! The split made sense when ESock was used for all networking,
now it's really just a hassle to import from two different files.

CONSTANTS_FOR_EVERYTHING = 1

In case of mangled utf8 chars that throw encoding errors there is now a "last resort".
If that fails too, the data conversion behaves just like before.
2016-11-16 18:42:07 +01:00
Philip Trauner
c2c36efd0a Preperation for merge with Highway 2016-10-16 23:12:38 +02:00
Philip Trauner
9fc033dc18 Refactoring: less unneeded oo, unreachable code gone, relocated logic 2016-10-16 23:11:27 +02:00