Example #1
0
    private void  fromJSONRoomsList(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        JSONArrayValue json_array1 = json_value.array_value();

        if (json_array1 == null)
        {
            throw new Exception("The value for field RoomsList of RobotSetKnownRoomsCommandIntentJSON is not an array.");
        }
        int             count1            = json_array1.componentCount();
        List <RoomJSON> vector_RoomsList1 = new List <RoomJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            RoomJSON convert_classy = RoomJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_RoomsList1.Add(convert_classy);
        }
        initRoomsList();
        for (int num1 = 0; num1 < vector_RoomsList1.Count; ++num1)
        {
            appendRoomsList(vector_RoomsList1[num1]);
        }
        for (int num1 = 0; num1 < vector_RoomsList1.Count; ++num1)
        {
        }
    }
Example #2
0
    private void  fromJSONRoom(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        RoomJSON convert_classy = RoomJSON.from_json(json_value, ignore_extras, true);

        setRoom(convert_classy);
    }