I assume quite a few people have heard me yammer about something strange I've been doing over the last couple months.
At last, I think it's presentable enough to share a few images/explanations of.
Motivation:
For the longest time, I've been bugged by how limited UO helpers are.
There's no IDE (integrated development environment) support, each one has it's own funky syntax and they're all
severely limited in their capabilities.
Want a database? Have fun implementing your own. Want to use industry standard packages/utils? tough luck.
The pinnacle of despair, however, is when you, in your folly desire a UI for your scripts.
UO UI is insidious. It's incredibly frustrating, limited and performs badly to boot. A literal nightmare to work with.
These problems cannot be resolved from within the existing ecosystem.
This project, is my answer to the above. A fully modern application to interface with UO-Orion and provide capabilities never before seen.
It abstracts the nastiness that comes from interfacing with Orion and provides with a high level, modern application & programming interfaces to make your wildest dreams come true.
With this, you gain access to everything modern software engineering has to offer.
--------------------------------------------------------------------------------------------------------------------
The left hand side of the UI is a direct command interface that allows executing arbitrary Orion commands;
This is just for the R&D process and does not reflect final product.
Also, please note, I'm not really a UX/UI guy. I mostly deal with backend in my day to day so do excuse it being a bit on the ugly side.
I'll be improving the look & feel whenever I get a chance.
Current list of features:
- Cross-platform & responsive (I don't guarantee it'll look good on your phone but I do try to make sure it's usable)
- Can run normal Orion scripts
- Health/Stamina/Mana bars
- Chat tracking with full history
- Customizable chat filtering with Regular Expressions
- Discord integration (able to send messages)
- Connection indicator/Character name badge
- Logout button
- Theming support (i.e., dark/light, snow vs desert etc.)
- Integrated database
- Direct Command Execution (more of a developer feature)
- Custom UI elements (Logo, Connection indicator and sidebar handle designed/rendered by me. Just being a showoff here heh)
I'm currently debating whether I should publish but am also inclined to take donations/payments for this as R&D has proven very time consuming.
For the developer/tech-savvy among you, here are the technical details:
Key stack components:
- Typescript
- Electron
- React/MobX
- SQLite3
- TypeORM
- HandleBars
Interesting Points:
- Frontend | Backend-for-frontend | Backend (ReactOr-Server) design.
- Custom communication protocol - A *very* simplified TCP-like protocol over UDP, a bit reminiscent of RPC
- Fully typed Orion integration - Invocations are done as true, typed functions.
- Arbitrary Script Execution (ASE) capabilities - (risky but mostly mitigated by Orion being so restricted)
- Task scheduler/batcher - performance was taken into consideration.
Tasks can be executed as standalone or batched operation to reduce the number of IPC calls - Chat searching/filtering - The system is designed to handle pretty high scale. Search filtering is done via a TRIE for
simple matches and Regular Expressions for complex ones.
The chat database table is indexed to allow efficient searches by any parameter (speaker, time, order, origin etc.)
If the data grows too large, I may add a Lucene based engine as well. - Flexible DAL - Database layer design allows for multiple different data-sources, for example Atlas
Limitations:
- The ReactOr Server (a separate script that executes directly on Orion) must be running in order to receive communications
from the application - Due to issues in Orion itself, the script selector must always be on the ReactOr-Server script in order for it to function properly
- Orion allows a maximum of 30 threads at any given time. The integrated batch executor is designed to partially mitigate this issue
but it's still noteworthy. - Arbitrary Script Execution (ASE) does not have typings. (ASE refers to execution plain JS scripts provided by the user)
I'm considering several venues by which this can be improved upon but this is a lower priority item, for now.
If you've found this relevant, wish to donate or are otherwise interested, do leave a comment, either here or in-game.
Have a nice day,
V