Follow the leader with help from a server
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Este repositorio está archivado. Puede ver los archivos y clonarlo, pero no puede subir cambios o reportar incidencias ni pedir Pull Requests.

61 líneas
962B

  1. // NGnius 2020-01-30
  2. package main
  3. import (
  4. "strconv"
  5. "time"
  6. )
  7. // Board a leaderboard
  8. type BoardJSON struct {
  9. ID int64
  10. Entries []EntryJSON
  11. Name string
  12. }
  13. // Entry an entry in a leaderboard
  14. type EntryJSON struct {
  15. ID int64
  16. Rank int64
  17. Score int64
  18. PlayerName string
  19. PlayerURL string
  20. }
  21. // Player a player
  22. type PlayerJSON struct {
  23. ID int64
  24. Name string
  25. Entries []EntryJSON
  26. }
  27. // URL get the player's URL
  28. func (p *PlayerJSON) URL() string {
  29. return "/player/" + strconv.Itoa(int(p.ID))
  30. }
  31. // Result a query result
  32. type Result struct {
  33. Items []interface{}
  34. Elapsed int64
  35. Count int
  36. Query string
  37. URL string
  38. Start time.Time
  39. }
  40. // NewResult build a query struct
  41. func NewResult(q string, url string) (r Result) {
  42. r.Start = time.Now()
  43. r.Query = q
  44. r.URL = url
  45. return
  46. }
  47. // Complete finish the result
  48. func (r *Result) Complete() {
  49. r.Count = len(r.Items)
  50. r.Elapsed = time.Since(r.Start).Milliseconds()
  51. }