source: binary-improvements2/MapRendering/Web/API/GetWebUIUpdates.cs@ 382

Last change on this file since 382 was 382, checked in by alloc, 2 years ago

Switched to use SpaceWizards.HttpListener

File size: 1.5 KB
Line 
1using System.Net;
2using AllocsFixes.JSON;
3using AllocsFixes.LiveData;
4using HttpListenerRequest = SpaceWizards.HttpListener.HttpListenerRequest;
5using HttpListenerResponse = SpaceWizards.HttpListener.HttpListenerResponse;
6
7namespace AllocsFixes.NetConnections.Servers.Web.API {
8 public class GetWebUIUpdates : WebAPI {
9 public override void HandleRequest (HttpListenerRequest _req, HttpListenerResponse _resp, WebConnection _user,
10 int _permissionLevel) {
11 int latestLine;
12 if (_req.QueryString ["latestLine"] == null ||
13 !int.TryParse (_req.QueryString ["latestLine"], out latestLine)) {
14 latestLine = 0;
15 }
16
17 JSONObject result = new JSONObject ();
18
19 JSONObject time = new JSONObject ();
20 time.Add ("days", new JSONNumber (GameUtils.WorldTimeToDays (GameManager.Instance.World.worldTime)));
21 time.Add ("hours", new JSONNumber (GameUtils.WorldTimeToHours (GameManager.Instance.World.worldTime)));
22 time.Add ("minutes", new JSONNumber (GameUtils.WorldTimeToMinutes (GameManager.Instance.World.worldTime)));
23 result.Add ("gametime", time);
24
25 result.Add ("players", new JSONNumber (GameManager.Instance.World.Players.Count));
26 result.Add ("hostiles", new JSONNumber (Hostiles.Instance.GetCount ()));
27 result.Add ("animals", new JSONNumber (Animals.Instance.GetCount ()));
28
29 result.Add ("newlogs", new JSONNumber (LogBuffer.Instance.LatestLine - latestLine));
30
31 WriteJSON (_resp, result);
32 }
33
34 public override int DefaultPermissionLevel () {
35 return 2000;
36 }
37 }
38}
Note: See TracBrowser for help on using the repository browser.