Exemplo n.º 1
0
 protected void finish(RobotSetKnownRoomsCommandIntentJSON result)
 {
     if (fieldGeneratorRoomsList.have_value)
     {
         result.initRoomsList();
         int count = fieldGeneratorRoomsList.value.Count;
         for (int num = 0; num < count; ++num)
         {
             result.appendRoomsList(fieldGeneratorRoomsList.value[num]);
         }
         fieldGeneratorRoomsList.value.Clear();
         fieldGeneratorRoomsList.have_value = false;
     }
     else if ((!(result.hasRoomsList())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"RoomsList\" field was missing.");
     }
     base.finish(result);
 }
Exemplo n.º 2
0
        protected override void finish()
        {
            if (!(getRobotCommandIntentJSONKey().Equals("RobotSetKnownRoomsCommand")))
            {
                throw new Exception("The key field has a value other than `RobotSetKnownRoomsCommand'.");
            }
            RobotSetKnownRoomsCommandIntentJSON result = new RobotSetKnownRoomsCommandIntentJSON();

            Debug.Assert(result != null);
            finish(result);
            int extra_count = unknownFieldGenerator.field_names.Count;

            Debug.Assert(extra_count == unknownFieldGenerator.field_values.Count);
            for (int extra_num = 0; extra_num < extra_count; ++extra_num)
            {
                result.extraRobotSetKnownRoomsCommandIntentAppendPair(unknownFieldGenerator.field_names[extra_num], unknownFieldGenerator.field_values[extra_num]);
            }
            unknownFieldGenerator.field_names.Clear();
            unknownFieldGenerator.field_values.Clear();
            unknownFieldGenerator.index = new Dictionary <string, JSONValue>();
            handle_result(result);
        }
Exemplo n.º 3
0
 protected override void handle_result(RobotSetKnownRoomsCommandIntentJSON result)
 {
     top.value.Add(result);
 }
Exemplo n.º 4
0
        protected override void handle_result(RobotSetKnownRoomsCommandIntentJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Exemplo n.º 5
0
 protected abstract void handle_result(RobotSetKnownRoomsCommandIntentJSON new_result);