8 ms·
I've had some friends in the logistics industry ask about a mobile app for this. How hard would it be to convert that to mobile? Are you depending on some compl
by rbaudibert 2y ago
I've had some friends in the logistics industry ask about a mobile app for this. How hard would it be to convert that to mobile? Are you depending on some complex libraries for the solver, or did you implement the algorithm yourself? I have 0 to no knowledge of C#.
- vld5 2y agoI implemented the algorithm myself and although I don't have much experience with mobile apps programming I think that converting it to other programming languages or adapting it for other frameworks would be fairly easy. The real problem is the 3D rendering which is done using WPF 3D (Windows only), so I would need to completely rework it.
- jtriangle 2y agoEven if mobile v1 was simple level by level text output, it'd probably still be useful.
- vld5 2y agoProbably yes. Implementing only the text output should be very simple. Anyways, I'll look into it.
- neonsunset 2y agoMoving to Avalonia from WPF should be relatively straightforward (except, possibly, the WPF 3D part), and Avalonia is capable of targeting mobile platforms (even though it really is desktop-first, when compared to Uno or MAUI). As a bonus it will run on macOS and Linux too.
- crote 2y agoIf you're going to rework it, perhaps consider making it a web app? Wrap it in Electron for desktop use, I bet there's something similar for iOS / Android. That'd make it available as both a dedicated app for power users, and an (ad-supported) variant for occasional use.