Difference between revisions of "LiteRumble"

From Robowiki
Jump to navigation Jump to search
m (update to reflect that I'm on paid tier now)
(Add navbox)
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
The LiteRumble is a lightweight, easily deployable roborumble system which is designed to run on the free tier of the Google App Engine.  
 
The LiteRumble is a lightweight, easily deployable roborumble system which is designed to run on the free tier of the Google App Engine.  
The competitions will fill out automagically as they are given battles - no hardcoded rumble names or configurations. Because of this and the ease in deploying it should be perfect for in-class or in-office competitions. One of my goals for this was to be able to have a rumble setup which would never need any maintenance.
 
  
It is designed to serve vanilla HTML/CSS (w3c validated) - no JavaScript or anything fancy. All sorting of columns is done server side through linked GET arguments - so click on column headers to sort by that column!
+
The competitions will fill out automagically as they are given battles ‒ no hardcoded rumble names or configurations. Because of this and the ease in deploying it should be perfect for in-class or in-office competitions. One of my goals for this was to be able to have a rumble setup which would never need any maintenance.
  
Here's the link for my 'official' hosted version: [http://literumble.appspot.com LiteRumble.appspot.com] - feel free to create new rumble categories on it as you want! Also, let me know on the comments page if you do, I'm interested to see what is happening.
+
It is designed to serve vanilla HTML/CSS (w3c validated) ‒ no JavaScript or anything fancy. All sorting of columns is done server side through linked GET arguments - so click on column headers to sort by that column!
  
A preconfigured client is available [https://dl.dropbox.com/u/4066735/literumble-template.zip here], with Roborumble, Meleerumble, TeamRumble and Twinduel. Just change the name of the submitter and you're ready to go.
+
Here's the link for my 'official' hosted version: https://literumble.appspot.com ‒ feel free to create new rumble categories on it as you want! Also, let me know on the comments page if you do, I'm interested to see what is happening.
  
 
I've released the code under <i>[http://creativecommons.org/licenses/by-nc-sa/3.0/ Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License]</i>. It is hosted on [https://bitbucket.org/jkflying/literumble/src BitBucket]. If you want to run your own just change the name to whatever you want yours to be called in <code>app.yaml</code>, create the newly named app on the app engine and deploy! All you need to do then is point your upload client at it, run the client and the rumbles should appear with whatever wild, fancy configurations you want automagically appearing. If you want specific rumbles not to get priority battles (ie. mini, micro and nano) you can set that manually using the Datastore Viewer in the App Engine admin console.
 
I've released the code under <i>[http://creativecommons.org/licenses/by-nc-sa/3.0/ Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License]</i>. It is hosted on [https://bitbucket.org/jkflying/literumble/src BitBucket]. If you want to run your own just change the name to whatever you want yours to be called in <code>app.yaml</code>, create the newly named app on the app engine and deploy! All you need to do then is point your upload client at it, run the client and the rumbles should appear with whatever wild, fancy configurations you want automagically appearing. If you want specific rumbles not to get priority battles (ie. mini, micro and nano) you can set that manually using the Datastore Viewer in the App Engine admin console.
  
Some of the scoring I've done differently to Darkcanuck - I have Win% instead of PL (so it doesn't fluctuate with number of bots), and in Melee my survival is not as a bot-specific %, but rather as an 'out of total rounds' % (the 1v1 won't be affected).  
+
Some of the scoring I've done differently to Darkcanuck I have Win% instead of PL (so it doesn't fluctuate with number of bots), and in Melee my survival is not as a bot-specific %, but rather as an 'out of total rounds' % (the 1v1 won't be affected).  
  
 
The scores  
 
The scores  
Line 23: Line 22:
  
 
And most of all, have fun and happy Robocoding! - [[User:Skilgannon|Skilgannon]]
 
And most of all, have fun and happy Robocoding! - [[User:Skilgannon|Skilgannon]]
 +
 +
== See Also ==
 +
{{Navbox RoboRumble}}

Revision as of 18:04, 20 August 2017

The LiteRumble is a lightweight, easily deployable roborumble system which is designed to run on the free tier of the Google App Engine.

The competitions will fill out automagically as they are given battles ‒ no hardcoded rumble names or configurations. Because of this and the ease in deploying it should be perfect for in-class or in-office competitions. One of my goals for this was to be able to have a rumble setup which would never need any maintenance.

It is designed to serve vanilla HTML/CSS (w3c validated) ‒ no JavaScript or anything fancy. All sorting of columns is done server side through linked GET arguments - so click on column headers to sort by that column!

Here's the link for my 'official' hosted version: https://literumble.appspot.com ‒ feel free to create new rumble categories on it as you want! Also, let me know on the comments page if you do, I'm interested to see what is happening.

I've released the code under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. It is hosted on BitBucket. If you want to run your own just change the name to whatever you want yours to be called in app.yaml, create the newly named app on the app engine and deploy! All you need to do then is point your upload client at it, run the client and the rumbles should appear with whatever wild, fancy configurations you want automagically appearing. If you want specific rumbles not to get priority battles (ie. mini, micro and nano) you can set that manually using the Datastore Viewer in the App Engine admin console.

Some of the scoring I've done differently to Darkcanuck ‒ I have Win% instead of PL (so it doesn't fluctuate with number of bots), and in Melee my survival is not as a bot-specific %, but rather as an 'out of total rounds' % (the 1v1 won't be affected).

The scores

  • ANPP (Average Normalised Percentage Pairs)
  • Vote (percentage you are best against)
  • NPP (Normalised Percentage Pairs)
  • KNNPBI (K-Nearest-Neighbours Problem Bot Index)

are all calculated as a batch run twice a day, so you won't see the latest results from them immediately.


Take a look around and tell me what you think. Submit battles if you have spare cycles, it can handle a bunch of clients now that I'm on the paid tier.

And most of all, have fun and happy Robocoding! - Skilgannon

See Also