Reputation: 467
I'm making a game which I'm planning to update a lot. The previous game I made, I just let users download whole game or patches every time a new version is released but I want to implement online auto-patch feature if it isn't too much trouble to implement. An auto patcher like many applications and online games use.
I do not really want to make it from scratch, and I don't want to spend much time building the patching system if it is too much bother, maybe about a week at most.
Is there any easy-to-implement auto patcher library or software or plug-in you can use for java/scala application?
My game is written in scala, and it is an ordinary offline game. users need to receive either whole game folder in a zip or files that have been changed in a zip, then extracted and copied to the game folder. The game only runs on windows and no plan to port to android/iOS. At least, I don't plan to use auto patcher for other platform.
Thanks.
Upvotes: 1
Views: 610
Reputation: 12462
I never tried that but maybe a Scala app can be used with WebStart. Once you changed the jar on your server your users are asked to download an update when they start the app the next time. These updates can be obligatory or optional.
Upvotes: 1