MissionControl.json.dumps C# (CSharp) Method

dumps() public method

public dumps ( ) : string
return string
        public string dumps()
        {
            string buffer = "{";
            for (int i = 0; i < keys.Count; i++) {
                buffer += keys [i] + ":" + values [i];
                if (i + 1 != keys.Count) {
                    buffer += ",";
                }
            }

            return buffer + "}";
        }

Usage Example

        public void Synchronize(MissionControlService client)
        {
            Debug.Log ("STEP1");
            // Retrieve celestial information
            List<json> celestial_buffer = new List<json>();
            foreach (CelestialBody celestial in FlightGlobals.Bodies) {
                celestial_buffer.Add (utilities.getCelestialState (celestial));
            }
            Debug.Log ("STEP2");
            // Retrieve vessel information and add the vessel to known vessels
            List<json> vessel_buffer = new List<json>();
            foreach (Vessel vessel in FlightGlobals.Vessels) {
                vessel_buffer.Add (utilities.getVesselState (vessel));
                Debug.Log ("STEP2X");
                client.known_vessels.Add (vessel);
            }

            Debug.Log ("STEP3");
            // Compile it into a single json packet
            json buffer = new json();
            buffer.Add ("state", GameState ());
            buffer.Add ("celestials", celestial_buffer);
            buffer.Add ("vessels", vessel_buffer);
            Debug.Log ("STEP4");
            client.send (buffer.dumps ());
            Debug.Log ("STEP5");
            UpdateClients (); // TODO: not necessary the right way to do it.
        }
All Usage Examples Of MissionControl.json::dumps