# SOME DESCRIPTIVE TITLE # Copyright (C) YEAR Free Software Foundation, Inc. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2014-07-02 12:51+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. type: One-char language identifier #: train701.languagecode:1 #, no-wrap msgid "E" msgstr "R" #. type: Title-text #: train701/scene.txt:1 #, no-wrap msgid "train701:Remote control #3" msgstr "train701:Дистанционное управление #3" #. type: Resume-text #: train701/scene.txt:2 #, no-wrap msgid "train701:Remote control a bot without using an information exchange post by using a string." msgstr "train701:Дистанционное управление ботом без использования поста обменом информацией." #. type: ScriptName-text #: train701/scene.txt:3 #, no-wrap msgid "train701:Remote3" msgstr "train701:Remote3" #. type: \b; header #: train701-help/tremote3.txt:1 #, fuzzy, no-wrap msgid "Exercice" msgstr "Упражнение" #. type: Plain text #: train701-help/tremote3.txt:3 #, fuzzy, no-wrap msgid "Remote control a slave robot without using an information exchange post. The robot should pass over the 6 blue crosses. You must use a string to pass the orders to the slave bot. This string contains the order the slave shoud execute, for exemple \"move(20)\". You can see that this is the same syntax as used in the CBOT language but we could have chosen any other syntax for exemple something like \"advance=20\". The string will be a static class member that will be used to communicate from the master to the slave." msgstr "Дистанционное управление ботом без использования поста обменом информацией. Бот должен проехать по 6 синим отметкам. Вам потребуется использовать команду string для того, чтобы передавать команды управляемому боту. Эта строка будет содержать порядок выполнения, например \"move(20)\". Вы видите, что это тот же синтаксис, используемый в языке CBOT, но мы могли бы выбрать любой другой синтаксис, например что-то вроде \"advance=20\". Эта строка имеет статичный класс, который будет использован для связи ведущего бота(master, тот, кто управляет) с ведомым ботом(slave, тот, кем управляют)." #. type: Plain text #: train701-help/tremote3.txt:5 #, fuzzy, no-wrap msgid "The two main actors of this exercise are:\n" msgstr "Что потребуется:\n" #. type: Bullet: '1)' #: train701-help/tremote3.txt:5 #, fuzzy, no-wrap msgid "The wheeled grabber without an energy pack and therefore immobile. This is the master you should program so it will transmit orders to the slave." msgstr "Колесный сборщик без батареи. Данный бот будет ведущим." #. type: Bullet: '2)' #: train701-help/tremote3.txt:6 #, fuzzy, no-wrap msgid "The slave practice bot which is already programmed and just waits for orders from the master." msgstr "Ведомый тренировочный бот запрограммированый заранее на ожидание комманд от ведущего бота." #. type: \b; header #: train701-help/tremote3.txt:8 #, fuzzy, no-wrap msgid "The slave" msgstr "Ведомый" #. type: Plain text #: train701-help/tremote3.txt:10 #, fuzzy, no-wrap msgid "First of all we must understand how the program of the slave works. The class exchange contains the mechanism for exchaning the orders. We declare a static class member m_order which will contain the order to be executed. The word static insures that the member m_order is shared between all instances of the class exchange." msgstr "Прежде всего нужно понять, как программа работает. Класс exchange содержит в себе механизм обмена данными. Мы заявляем статичный номер класса m_order который содержит в себе команды для выполнения. Слово статический гарантирует, что m_order будет одинаковым во всех классах." #. type: Plain text #: train701-help/tremote3.txt:12 #, fuzzy, no-wrap msgid "public class exchange" msgstr "public class exchange" #. type: \s; block (usually verbatim code) #: train701-help/tremote3.txt:14 #, fuzzy, no-wrap msgid "" "{\n" "\tstatic private string m_order = \"\";" msgstr "" "{\n" "\tstatic private string m_order = \"\";" #. type: Plain text #: train701-help/tremote3.txt:16 #, fuzzy, no-wrap msgid "The put method will be used by the master robot for transmitting an order. As long as the string m_order is not empty, the slave has not finished the order and the put method will return false and will do nothing." msgstr "Метод \"put\" позволит ведущему боту передавать команды. Пока строка m_order не будет очищена, ведомый бот не закончит работу и метод put вернет ложь(т.е. бот ничего не будет делать)." #. type: Plain text #: train701-help/tremote3.txt:18 #, fuzzy, no-wrap msgid "\tsynchronized bool put(string order)" msgstr "\tsynchronized bool put(string order)" #. type: \s; block (usually verbatim code) #: train701-help/tremote3.txt:29 #, fuzzy, no-wrap msgid "" "\t{\n" "\t\tif ( m_order == \"\" )\n" "\t\t{\n" "\t\t\tm_order = order;\n" "\t\t\treturn true;\n" "\t\t}\n" "\t\telse\n" "\t\t{\n" "\t\t\treturn false;\n" "\t\t}\n" "\t}" msgstr "" "\t{\n" "\t\tif ( m_order == \"\" )\n" "\t\t{\n" "\t\t\tm_order = order;\n" "\t\t\treturn true;\n" "\t\t}\n" "\t\telse\n" "\t\t{\n" "\t\t\treturn false;\n" "\t\t}\n" "\t}" #. type: Plain text #: train701-help/tremote3.txt:31 #, fuzzy, no-wrap msgid "Another method get will be used by the slave to retrieve the orders. This method returns the string contained in m_order and empties it, so a new order can be accepted:" msgstr "Другой метод get может быть использован ведомым ботом для получения задания. Этот метод возвращает в строку m_order заявку(order) на выполнение работы:" #. type: Plain text #: train701-help/tremote3.txt:33 #, fuzzy, no-wrap msgid "\tsynchronized string get()" msgstr "\tsynchronized string get()" #. type: \s; block (usually verbatim code) #: train701-help/tremote3.txt:39 #, fuzzy, no-wrap msgid "" "\t{\n" "\t\tstring ret = m_order;\n" "\t\tm_order = \"\";\n" "\t\treturn ret;\n" "\t}\n" "}" msgstr "" "\t{\n" "\t\tstring ret = m_order;\n" "\t\tm_order = \"\";\n" "\t\treturn ret;\n" "\t}\n" "}" #. type: Plain text #: train701-help/tremote3.txt:41 #, fuzzy, no-wrap msgid "The main program of the slave contains an instance of the class exchange called list." msgstr "Основная программа в ведомом боте содержит класс exchange вызываемый через list." #. type: Plain text #: train701-help/tremote3.txt:43 #, fuzzy, no-wrap msgid "extern void object::Slave3( )" msgstr "extern void object::Slave3( )" #. type: \s; block (usually verbatim code) #: train701-help/tremote3.txt:46 #, fuzzy, no-wrap msgid "" "{\n" "\texchange list();\n" "\tstring todo;" msgstr "" "{\n" "\texchange list();\n" "\tstring todo;" #. type: Plain text #: train701-help/tremote3.txt:48 #, fuzzy, no-wrap msgid "The outer while loop lasts for ever. The inner while loop waits for an order by using the get method of the exchange class. As soon as get returns a non empty string, the while loop stops." msgstr "Внешний цикл длится вечно. Внутренний цикл ждет заявку с помощью метода get и exchange класса. Как только метод get вернет не пустую строку, цикл остановится." #. type: Plain text #: train701-help/tremote3.txt:50 #, fuzzy, no-wrap msgid "\twhile ( true )" msgstr "\twhile ( true )" #. type: \s; block (usually verbatim code) #: train701-help/tremote3.txt:57 #, fuzzy, no-wrap msgid "" "\t{\n" "\t\twhile ( true )\n" "\t\t{\n" "\t\t\ttodo = list.get();\n" "\t\t\tif ( todo != \"\" ) break;\n" "\t\t\twait(1);\n" "\t\t}" msgstr "" "\t{\n" "\t\twhile ( true )\n" "\t\t{\n" "\t\t\ttodo = list.get();\n" "\t\t\tif ( todo != \"\" ) break;\n" "\t\t\twait(1);\n" "\t\t}" #. type: Plain text #: train701-help/tremote3.txt:59 #, fuzzy, no-wrap msgid "Now we have received the order in the todo variable. All we have to do is execute it:" msgstr "Теперь мы получили заявку в переменную todo. Значит нам нужно выполнить заказ:" #. type: Plain text #: train701-help/tremote3.txt:61 #, fuzzy, no-wrap msgid "\t\tif ( strfind(todo, \"move\") == 0 )" msgstr "\t\tif ( strfind(todo, \"move\") == 0 )" #. type: \s; block (usually verbatim code) #: train701-help/tremote3.txt:70 #, fuzzy, no-wrap msgid "" "\t\t{\n" "\t\t\tmove(strval(strmid(todo,5)));\n" "\t\t}\n" "\t\tif ( strfind(todo, \"turn\") == 0 )\n" "\t\t{\n" "\t\t\tturn(strval(strmid(todo,5)));\n" "\t\t}\n" "\t}\n" "}" msgstr "" "\t\t{\n" "\t\t\tmove(strval(strmid(todo,5)));\n" "\t\t}\n" "\t\tif ( strfind(todo, \"turn\") == 0 )\n" "\t\t{\n" "\t\t\tturn(strval(strmid(todo,5)));\n" "\t\t}\n" "\t}\n" "}" #. type: \b; header #: train701-help/tremote3.txt:71 #, fuzzy, no-wrap msgid "The master" msgstr "Ведущий" #. type: Plain text #: train701-help/tremote3.txt:73 #, fuzzy, no-wrap msgid "In the master we write an function called SendOrder which will send an order to the slave:" msgstr "В ведущем боте создадим функцию SendOrder, которая будет отправлять заказы к ведомому боту:" #. type: Plain text #: train701-help/tremote3.txt:75 #, fuzzy, no-wrap msgid "void object::SendOrder(string order)" msgstr "void object::SendOrder(string order)" #. type: \s; block (usually verbatim code) #: train701-help/tremote3.txt:83 #, fuzzy, no-wrap msgid "" "{\n" "\texchange list();\n" "\t\n" "\twhile ( list.put(order) == false )\n" "\t{\n" "\t\twait(1);\n" "\t}\n" "}" msgstr "" "{\n" "\texchange list();\n" "\t\n" "\twhile ( list.put(order) == false )\n" "\t{\n" "\t\twait(1);\n" "\t}\n" "}" #. type: Plain text #: train701-help/tremote3.txt:86 #, fuzzy, no-wrap msgid "" "The while loop waits until a pending order has been terminated, that is the slaved has exited from the get method.\n" "Now the main program of the master is very simple:" msgstr "" "Цикл ждет, пока ожидаемая заявка не будет выполнена.\n" "Пока программа для ведущего бота довольно проста:" #. type: Plain text #: train701-help/tremote3.txt:88 #, fuzzy, no-wrap msgid "extern void object::Remote3( )" msgstr "extern void object::Remote3( )" #. type: \s; block (usually verbatim code) #: train701-help/tremote3.txt:99 #, fuzzy, no-wrap msgid "" "{\n" "\tSendOrder(\"move(20)\");\n" "\tSendOrder(\"turn(90)\");\n" "\tSendOrder(\"move(20)\");\n" "\tSendOrder(\"turn(90)\");\n" "\tSendOrder(\"move(10)\");\n" "\tSendOrder(\"turn(90)\");\n" "\tSendOrder(\"move(10)\");\n" "\tSendOrder(\"turn(-90)\");\n" "\tSendOrder(\"move(10)\");\n" "}" msgstr "" "{\n" "\tSendOrder(\"move(20)\");\n" "\tSendOrder(\"turn(90)\");\n" "\tSendOrder(\"move(20)\");\n" "\tSendOrder(\"turn(90)\");\n" "\tSendOrder(\"move(10)\");\n" "\tSendOrder(\"turn(90)\");\n" "\tSendOrder(\"move(10)\");\n" "\tSendOrder(\"turn(-90)\");\n" "\tSendOrder(\"move(10)\");\n" "}" #. type: Plain text #: train701-help/tremote3.txt:101 #, fuzzy, no-wrap msgid " show these instruction at any time." msgstr "Клавиша показывает эту инструкцию в любое время." #. type: \t; header #: train701-help/tremote3.txt:102 #, fuzzy, no-wrap msgid "See also" msgstr "Смотри также" #. type: Plain text #: train701-help/tremote3.txt:103 #, fuzzy, no-wrap msgid "Controls and programming." msgstr "Язык CBOT, Переменные и Категории."