source: binary-improvements2/MapRendering/Web/API/GetAnimalsLocation.cs@ 387

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

Big refactoring in Web to pass around a Context instead of a bunch of individual arguments all the time

File size: 1.2 KB
RevLine 
[325]1using System.Collections.Generic;
2using AllocsFixes.JSON;
[251]3using AllocsFixes.LiveData;
4
[325]5namespace AllocsFixes.NetConnections.Servers.Web.API {
[387]6 internal class GetAnimalsLocation : AbsWebAPI {
[325]7 private readonly List<EntityAnimal> animals = new List<EntityAnimal> ();
[306]8
[387]9 public override void HandleRequest (RequestContext _context) {
[325]10 JSONArray animalsJsResult = new JSONArray ();
[251]11
[313]12 Animals.Instance.Get (animals);
[325]13 for (int i = 0; i < animals.Count; i++) {
[306]14 EntityAnimal entity = animals [i];
[325]15 Vector3i position = new Vector3i (entity.GetPosition ());
[251]16
[325]17 JSONObject jsonPOS = new JSONObject ();
18 jsonPOS.Add ("x", new JSONNumber (position.x));
19 jsonPOS.Add ("y", new JSONNumber (position.y));
20 jsonPOS.Add ("z", new JSONNumber (position.z));
[251]21
[325]22 JSONObject pJson = new JSONObject ();
23 pJson.Add ("id", new JSONNumber (entity.entityId));
[251]24
[325]25 if (!string.IsNullOrEmpty (entity.EntityName)) {
26 pJson.Add ("name", new JSONString (entity.EntityName));
27 } else {
28 pJson.Add ("name", new JSONString ("animal class #" + entity.entityClass));
29 }
[251]30
[325]31 pJson.Add ("position", jsonPOS);
[251]32
[325]33 animalsJsResult.Add (pJson);
34 }
35
[387]36 WebUtils.WriteJson (_context.Response, animalsJsResult);
[325]37 }
38 }
39}
Note: See TracBrowser for help on using the repository browser.