spring replay site - Page 4

spring replay site

For the discussion of infrastructure improvements and changes.

Moderator: Moderators

Post Reply
User avatar
Jools
XTA Developer
Posts: 2816
Joined: 23 Feb 2009, 16:29

Re: spring replay site

Post by Jools »

Now it suddenly works and I didn't change anything. Maybe it was the python version and that comp needed to be restarted.
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: spring replay site

Post by smoth »

could you add support for looking up replays with 2 or more playnames as the search criterion? There is an individual who is making accusations and it would be good to either verify or prove untrue.
dansan
Server Owner & Developer
Posts: 1203
Joined: 29 May 2010, 23:40

Re: spring replay site

Post by dansan »

hehe - I just did that on the command line :)

Yes - I want to make the search much more useful... as with all major work -> winter/spring. (tickets 10, 29, 30 @ https://github.com/dansan/spring-replay-site/issues)
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: spring replay site

Post by smoth »

thanks for the help, the individual in question has no interest in proving the legitimacy of his claim and I am sorry I wasted your time with the request.
dansan
Server Owner & Developer
Posts: 1203
Joined: 29 May 2010, 23:40

Re: spring replay site

Post by dansan »

There you go :)

AJAX'ified search (player, map, game, tag, uploader) plus uses AND and OR more intuitively. (Though I guess the explanation is not understandable :)
lovers.png
smart couple
(53.51 KiB) Not downloaded yet
User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Re: spring replay site

Post by Forboding Angel »

I love it. Thanks you for all your awesome work! <3
dansan
Server Owner & Developer
Posts: 1203
Joined: 29 May 2010, 23:40

Re: spring replay site

Post by dansan »

Thank you :)

For some days now, the server is experiencing difficulties. There is >60% packet loss, and then it goes back to 0%, some hours later it returns... connection is almost impossible then... very annoying.

The hoster isn't helping much. During the weekends their stuff seems to always read the tickets exactly at the moment where everything's fine... I hope this changes during the week :/

vbs has stopped the TrueSkill balancing in the meantime. I guess some replay uploads got lost too, but ofc that is not detectable from the servers side :(
User avatar
Johannes
Posts: 1265
Joined: 17 Sep 2010, 15:49

Re: spring replay site

Post by Johannes »

How come the Glicko has such bad correlation with the ELO ratings? Could there be a typo in the algorithm or something?
User avatar
Silentwings
Posts: 3720
Joined: 25 Oct 2008, 00:23

Re: spring replay site

Post by Silentwings »

Iirc time periods matter to Glicko and not to Elo, and Glicko does some extra stuff about modelling uncertainty that Elo doesn't.
dansan
Server Owner & Developer
Posts: 1203
Joined: 29 May 2010, 23:40

Re: spring replay site

Post by dansan »

Glicko algo is unfortunately not implemented correctly by me. I'd have to define a time frame that it takes into account to see how active a player is and so on... and I never did. I want to do that with Elo too... that's how it's meant anyway... So we'd have a monthly-updated "official Elo" and a "live-Elo" like it is right now (http://en.wikipedia.org/wiki/Elo_rating ... ve_ratings).
It's just don't have the time to work on the site atm :(

Anyway: the Glicko values are all wrong - you have to ignore them for now.
dansan
Server Owner & Developer
Posts: 1203
Joined: 29 May 2010, 23:40

Re: spring replay site

Post by dansan »

I "switched" the site to use the TS values provided by SLDB. Later I'll let it reread the previous replays (since march) that already contained SLDB values.

The display still has bugs because I tried to do it "backwards compatible" and with a fallback on the sites TS calculation.... but the data models don't match, and that makes it hacky and buggy...

TS values are inaccurate, because they get converted by SLDB two times: SLDB-internal-exact-TS -> lobby-rank -> TS ... for privacy reasons.
When I have some privacy code in place I'll ask bibim how to interface with SLDB, so the site can use exact TS values and adhere to the same privacy policy (http://springrts.com/phpbb/viewtopic.ph ... 60#p536891).

There is no Elo anymore, SLDB does everything with TS.
User avatar
knorke
Posts: 7971
Joined: 22 Feb 2006, 01:02

Re: spring replay site

Post by knorke »

I was wondering why Helium XTA host does not upload replays?
Not the semprini one by Jools but the one run by Licho.
Does it not work with the "zK hosts" or is a setting or something else?
dansan
Server Owner & Developer
Posts: 1203
Joined: 29 May 2010, 23:40

Re: spring replay site

Post by dansan »

knorke wrote:I was wondering why Helium XTA host does not upload replays?
Not the semprini one by Jools but the one run by Licho.
Does it not work with the "zK hosts" or is a setting or something else?
Springie does not have the needed interface. Licho said he doesn't have the time/will to code it, but will help others if they do. He left me with some pointers, but I'm not into C#.
Akaik springie dumps zero-k replays into http://zero-k.info/replays/ - maybe it does so too with XTA replays. It then might be possible to hack something to auto-upload it to the replay-site.

If you get someone from the zero-k team to enable/code a RSS-feed for the replays (similar to http://replays.admin-box.com/feeds/latest/), then it'd be simple to fetch and upload the replays using for example flexget. The URLs on zero-ks replay page look like this:

Code: Select all

javascript:SendLobbyCommand('@start_replay:http://zero-k.info/replays/20130711_093003_SpeedMetal_91.sdf,Zero-K%20v1.1.6.8,SpeedMetal,91.0');void(0);
User avatar
knorke
Posts: 7971
Joined: 22 Feb 2006, 01:02

Re: spring replay site

Post by knorke »

ah, i remember conversation with Licho and as I understood all the autohosts save replays but then they are just not displayed. So there is also this ticket: http://code.google.com/p/zero-k/issues/detail?id=1226
So adding a "game" textfield + filter to website might be a way too.

http://zero-k.info/replays/ is 403 though. Otherwise one could at least list replays with browser(?) Add subfolders named to autohosts and one would at least primitive access to replays.
(Not a solution to get XTA helium replays on replay site but for my mod I would just like any way to see the few games that might be played)
dansan
Server Owner & Developer
Posts: 1203
Joined: 29 May 2010, 23:40

Re: spring replay site

Post by dansan »

knorke wrote:http://zero-k.info/replays/ is 403 though. Otherwise one could at least list replays with browser(?) Add subfolders named to autohosts and one would at least primitive access to replays.
(Not a solution to get XTA helium replays on replay site but for my mod I would just like any way to see the few games that might be played)
Such a directory listing would be easy to parse and the replay site could download new replays from there.

If you cannot bribe a dev to code a correct RSS-feed, a simple list of all "SendLobbyCommand" links created with each replay would be as easy to parse.

Just some hacky ideas...
User avatar
CarRepairer
Cursed Zero-K Developer
Posts: 3359
Joined: 07 Nov 2007, 21:48

Re: spring replay site

Post by CarRepairer »

User avatar
knorke
Posts: 7971
Joined: 22 Feb 2006, 01:02

Re: spring replay site

Post by knorke »

CarRepairer wrote:
knorke wrote:http://zero-k.info/replays/ is 403 though.
http://zero-k.info/Battles
:?:
The "Game:" field does not work for entries other than "zero-K"
User avatar
knorke
Posts: 7971
Joined: 22 Feb 2006, 01:02

Re: spring replay site

Post by knorke »

I can not log in with lobby account to comment/upload. Always get:
Your username and password didn't match. Please try again.

Please enter a correct username and password. Note that both fields are case-sensitive.
dansan
Server Owner & Developer
Posts: 1203
Joined: 29 May 2010, 23:40

Re: spring replay site

Post by dansan »

Hmm... authentication seems to work atm... are you sure your name+pw are correct? You have to use the exact same as in the lobby (incl. "[2up]" and stuff).
... enable cookies?
You can check if I'm online, then I can enable debug mode on the site, to see more. It doesn't normally log unsuccessful login attempts :)
User avatar
knorke
Posts: 7971
Joined: 22 Feb 2006, 01:02

Re: spring replay site

Post by knorke »

Yes, I typed with [2up]
Also tried different account with no strange characters, and in internet explorer.
Cookies are enabled and the stored ones show up in Firefox. Deleting cookies did not work.
Post Reply

Return to “Infrastructure Development”