You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2364 lines
346KB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <feed xmlns="http://www.w3.org/2005/Atom"><title>Opensource Game Studio</title><link href="http://opengamestudio.org/" rel="alternate"></link><link href="http://opengamestudio.org/feeds/all.atom.xml" rel="self"></link><id>http://opengamestudio.org/</id><updated>2018-11-19T00:00:00+03:00</updated><entry><title>Ideal games and game development tools</title><link href="http://opengamestudio.org/ideal-gamedev.html" rel="alternate"></link><published>2018-11-19T00:00:00+03:00</published><updated>2018-11-19T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-11-19:/ideal-gamedev.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-11-19-ideal-gamedev.png"&gt;&lt;/p&gt;
  3. &lt;p&gt;In this article, we discuss how ideal video game and video game development
  4. tool look like, in our opinion.&lt;/p&gt;
  5. &lt;p&gt;&lt;strong&gt;Questions&lt;/strong&gt;&lt;/p&gt;
  6. &lt;p&gt;As you know, the &lt;a href="http://opengamestudio.org/pages/about.html"&gt;goals of Opensource Game Studio&lt;/a&gt; are:&lt;/p&gt;
  7. &lt;ul&gt;
  8. &lt;li&gt;creation of free video game development tools&lt;/li&gt;
  9. &lt;li&gt;making video games with those tools&lt;/li&gt;
  10. &lt;li&gt;preparing video game development tutorials&lt;/li&gt;
  11. &lt;/ul&gt;
  12. &lt;p&gt;This time …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-11-19-ideal-gamedev.png"&gt;&lt;/p&gt;
  13. &lt;p&gt;In this article, we discuss how ideal video game and video game development
  14. tool look like, in our opinion.&lt;/p&gt;
  15. &lt;p&gt;&lt;strong&gt;Questions&lt;/strong&gt;&lt;/p&gt;
  16. &lt;p&gt;As you know, the &lt;a href="http://opengamestudio.org/pages/about.html"&gt;goals of Opensource Game Studio&lt;/a&gt; are:&lt;/p&gt;
  17. &lt;ul&gt;
  18. &lt;li&gt;creation of free video game development tools&lt;/li&gt;
  19. &lt;li&gt;making video games with those tools&lt;/li&gt;
  20. &lt;li&gt;preparing video game development tutorials&lt;/li&gt;
  21. &lt;/ul&gt;
  22. &lt;p&gt;This time we asked ourselves two simple questions:&lt;/p&gt;
  23. &lt;ul&gt;
  24. &lt;li&gt;What is an ideal video game?&lt;/li&gt;
  25. &lt;li&gt;What is an ideal video game development tool?&lt;/li&gt;
  26. &lt;/ul&gt;
  27. &lt;p&gt;The best answers we could think of are below.&lt;/p&gt;
  28. &lt;p&gt;&lt;strong&gt;Answer 1: A video game is ideal if it delivers maximum pleasure possible&lt;/strong&gt;&lt;/p&gt;
  29. &lt;p&gt;While content is probably the most important aspect to keep a player invested
  30. into the game, the technical side is the transport to deliver that content.
  31. There are quite a few technical problems that may damage otherwise excellent content of a game:&lt;/p&gt;
  32. &lt;ul&gt;
  33. &lt;li&gt;insufficient accessibility: the game does not run on your hardware&lt;/li&gt;
  34. &lt;li&gt;insufficient optimization: the game is slow&lt;/li&gt;
  35. &lt;li&gt;critical bugs: the game crashes from time to time&lt;/li&gt;
  36. &lt;/ul&gt;
  37. &lt;p&gt;We work hard to make sure the games we create are accessible everywhere.
  38. That's why we released
  39. &lt;a href="http://opengamestudio.org/mahjong-demo2.html"&gt;the second demonstration of OGS Mahjong 2&lt;/a&gt; only for
  40. the web: because you can run web version virtually anywhere.&lt;/p&gt;
  41. &lt;p&gt;&lt;strong&gt;Answer 2: A video game development tool is ideal if it lets you create a video game of your dream in the shortest time possible&lt;/strong&gt;&lt;/p&gt;
  42. &lt;p&gt;Even though we put a lot of effort into sharing our knowledge through
  43. &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide"&gt;guides&lt;/a&gt; and &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples"&gt;tutorials&lt;/a&gt;, we understand that those take a lot
  44. of time to study. One can't possibly make even a simple video game like
  45. &lt;a href="https://en.wikipedia.org/wiki/Concentration_(game)"&gt;Memory&lt;/a&gt; without performing the following steps:&lt;/p&gt;
  46. &lt;ul&gt;
  47. &lt;li&gt;configure the development environment&lt;/li&gt;
  48. &lt;li&gt;write code&lt;/li&gt;
  49. &lt;li&gt;build an application&lt;/li&gt;
  50. &lt;li&gt;debug the application&lt;/li&gt;
  51. &lt;li&gt;repeat &lt;code&gt;write-build-debug&lt;/code&gt; steps as many times as necessary&lt;/li&gt;
  52. &lt;/ul&gt;
  53. &lt;p&gt;Writing code and debugging are probably the ultimate forms of input and output
  54. of any software, so we can't escape those. However, there are ways to
  55. completely remove (or at least significantly decrease) the need for
  56. &lt;code&gt;development environment setup&lt;/code&gt; and &lt;code&gt;build&lt;/code&gt; steps. And this is what we are
  57. going to do in the coming months.&lt;/p&gt;
  58. &lt;p&gt;Our goal for the coming months is to create a video game development tool that
  59. would allow any programmer (or sufficiently skilled person) to create the
  60. &lt;a href="https://en.wikipedia.org/wiki/Concentration_(game)"&gt;Memory&lt;/a&gt; video game from scratch in an hour.&lt;/p&gt;
  61. &lt;p&gt;That's it for discussing how ideal video game and video game development tool
  62. look like, in our opinion.&lt;/p&gt;</content></entry><entry><title>Идеальные игры и средства для их разработки</title><link href="http://opengamestudio.org/ideal-gamedev-ru.html" rel="alternate"></link><published>2018-11-19T00:00:00+03:00</published><updated>2018-11-19T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-11-19:/ideal-gamedev-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-11-19-ideal-gamedev.png"&gt;&lt;/p&gt;
  63. &lt;p&gt;В этой статье мы обсудим, как выглядят идеальные видеоигра и инструмент для
  64. разработки видеоигр, по нашему мнению.&lt;/p&gt;
  65. &lt;p&gt;&lt;strong&gt;Вопросы&lt;/strong&gt;&lt;/p&gt;
  66. &lt;p&gt;Как вы знаете, &lt;a href="http://opengamestudio.org/pages/about-ru.html"&gt;целями Opensource Game Studio&lt;/a&gt; являются:&lt;/p&gt;
  67. &lt;ul&gt;
  68. &lt;li&gt;создание бесплатных инструментов для разработки видеоигр&lt;/li&gt;
  69. &lt;li&gt;создание видеоигр с помощью этих инструментов&lt;/li&gt;
  70. &lt;li&gt;создание самоучителей по разработке видеоигр&lt;/li&gt;
  71. &lt;/ul&gt;
  72. &lt;p&gt;В этот раз мы решили задать себе …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-11-19-ideal-gamedev.png"&gt;&lt;/p&gt;
  73. &lt;p&gt;В этой статье мы обсудим, как выглядят идеальные видеоигра и инструмент для
  74. разработки видеоигр, по нашему мнению.&lt;/p&gt;
  75. &lt;p&gt;&lt;strong&gt;Вопросы&lt;/strong&gt;&lt;/p&gt;
  76. &lt;p&gt;Как вы знаете, &lt;a href="http://opengamestudio.org/pages/about-ru.html"&gt;целями Opensource Game Studio&lt;/a&gt; являются:&lt;/p&gt;
  77. &lt;ul&gt;
  78. &lt;li&gt;создание бесплатных инструментов для разработки видеоигр&lt;/li&gt;
  79. &lt;li&gt;создание видеоигр с помощью этих инструментов&lt;/li&gt;
  80. &lt;li&gt;создание самоучителей по разработке видеоигр&lt;/li&gt;
  81. &lt;/ul&gt;
  82. &lt;p&gt;В этот раз мы решили задать себе пару простых вопросов:&lt;/p&gt;
  83. &lt;ul&gt;
  84. &lt;li&gt;Какова идеальная видеоигра?&lt;/li&gt;
  85. &lt;li&gt;Каков идеальный инструмент для разработки видеоигр?&lt;/li&gt;
  86. &lt;/ul&gt;
  87. &lt;p&gt;Ниже представлены наши ответы.&lt;/p&gt;
  88. &lt;p&gt;&lt;strong&gt;Ответ 1: Видеоигра идеальна, если она доставляет максимально возможное удовольствие&lt;/strong&gt;&lt;/p&gt;
  89. &lt;p&gt;Несмотря на то, что содержание является, пожалуй, самой важной частью,
  90. удерживающей человека в игре, техническая сторона является транспортом для
  91. доставки этого содержания. Существует немало технических проблем, которые
  92. могут полностью испортить впечатление даже от превосходного содержания:&lt;/p&gt;
  93. &lt;ul&gt;
  94. &lt;li&gt;недостаточная доступность: игра не идёт на оборудовании человека&lt;/li&gt;
  95. &lt;li&gt;недостаточная оптимизация: игра тормозит&lt;/li&gt;
  96. &lt;li&gt;критичные ошибки: игра падает время от времени&lt;/li&gt;
  97. &lt;/ul&gt;
  98. &lt;p&gt;Мы тратим много сил, чтобы сделать наши игры доступными везде. Именно поэтому
  99. мы выпустили &lt;a href="http://opengamestudio.org/mahjong-demo2-ru.html"&gt;вторую демонстрацию OGS Mahjong 2&lt;/a&gt; лишь для веба:
  100. т.к. вы можете запустить веб-версию практически где угодно.&lt;/p&gt;
  101. &lt;p&gt;&lt;strong&gt;Ответ 2: Инструмент для разработки видеоигр идеален, если он позволяет создать игру мечты в кратчайшие возможные сроки&lt;/strong&gt;&lt;/p&gt;
  102. &lt;p&gt;Несмотря на то, что мы тратим много усилий на то, чтобы делиться своими
  103. знаниями с помощью &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide"&gt;руководств&lt;/a&gt; и &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples"&gt;самоучителей&lt;/a&gt;, мы осознаём,
  104. что на работу с ними уходит много времени. Сейчас нельзя создать даже
  105. простейшую &lt;a href="https://en.wikipedia.org/wiki/Concentration_(game)"&gt;видеоигру на память&lt;/a&gt; без выполнения следующих шагов:&lt;/p&gt;
  106. &lt;ul&gt;
  107. &lt;li&gt;настроить окружение разработки&lt;/li&gt;
  108. &lt;li&gt;написать код&lt;/li&gt;
  109. &lt;li&gt;собрать приложение&lt;/li&gt;
  110. &lt;li&gt;отладить приложение&lt;/li&gt;
  111. &lt;li&gt;повторить шаги &lt;code&gt;написать-собрать-отладить&lt;/code&gt; столько раз, сколько нужно&lt;/li&gt;
  112. &lt;/ul&gt;
  113. &lt;p&gt;Написание кода и отладка, пожалуй, являются конечными формами входа и
  114. выхода любого программного обеспечения, поэтому мы их не избежим. Однако,
  115. мы можем полностью избавиться от шагов (или хотя бы значительно сократить их)
  116. &lt;code&gt;настройки окружения разработки&lt;/code&gt; и &lt;code&gt;сборки&lt;/code&gt;. Именно на это мы и потратим
  117. ближайшие месяцы.&lt;/p&gt;
  118. &lt;p&gt;Наша цель на ближайшие месяцы состоит в том, чтобы создать такой инструмент
  119. разработки видеоигр, чтобы любой программист (или достаточно квалифицированный
  120. человек) мог создать &lt;a href="https://en.wikipedia.org/wiki/Concentration_(game)"&gt;видеоигру на память&lt;/a&gt; с нуля за час.&lt;/p&gt;
  121. &lt;p&gt;На этом мы заканчиваем обсуждение, как выглядят идеальные видеоигра и
  122. инструмент для разработки видеоигр, по нашему мнению.&lt;/p&gt;</content></entry><entry><title>OGS Mahjong 2: Demo 2</title><link href="http://opengamestudio.org/mahjong-demo2.html" rel="alternate"></link><published>2018-10-02T00:00:00+03:00</published><updated>2018-10-02T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-10-02:/mahjong-demo2.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-10-02-mahjong-demo2.png"&gt;&lt;/p&gt;
  123. &lt;p&gt;We are glad to announce the release of the second demonstration of OGS Mahjong 2.
  124. The purposes of this release were to refine our development techniques and
  125. build a solid cross-platform foundation.&lt;/p&gt;
  126. &lt;p&gt;&lt;strong&gt;Release&lt;/strong&gt;&lt;/p&gt;
  127. &lt;p&gt;Run the latest version of OGS Mahjong 2 in your web browser:
  128. &lt;a href="http://ogstudio.github.io/ogs-mahjong"&gt;http://ogstudio.github.io/ogs-mahjong …&lt;/a&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-10-02-mahjong-demo2.png"&gt;&lt;/p&gt;
  129. &lt;p&gt;We are glad to announce the release of the second demonstration of OGS Mahjong 2.
  130. The purposes of this release were to refine our development techniques and
  131. build a solid cross-platform foundation.&lt;/p&gt;
  132. &lt;p&gt;&lt;strong&gt;Release&lt;/strong&gt;&lt;/p&gt;
  133. &lt;p&gt;Run the latest version of OGS Mahjong 2 in your web browser:
  134. &lt;a href="http://ogstudio.github.io/ogs-mahjong"&gt;http://ogstudio.github.io/ogs-mahjong&lt;/a&gt;&lt;/p&gt;
  135. &lt;p&gt;You are encouraged to run the game with &lt;code&gt;seed&lt;/code&gt; parameter like this:
  136. &lt;a href="http://ogstudio.github.io/ogs-mahjong?seed=0"&gt;http://ogstudio.github.io/ogs-mahjong?seed=0&lt;/a&gt;&lt;/p&gt;
  137. &lt;p&gt;This allows you to play the same layout each time you launch the game.&lt;/p&gt;
  138. &lt;p&gt;Each seed uniquely identifies the placement of tiles. Thus, different seeds
  139. give you a different experience.&lt;/p&gt;
  140. &lt;p&gt;&lt;strong&gt;Development techniques and foundation&lt;/strong&gt;&lt;/p&gt;
  141. &lt;p&gt;During the second demonstration development, we switched from standard
  142. development to &lt;a href="http://opengamestudio.org/example-driven-development.html"&gt;example-driven one&lt;/a&gt;. This resulted in the
  143. creation of three distinct repositories to back the development of OGS Mahjong 2:&lt;/p&gt;
  144. &lt;ul&gt;
  145. &lt;li&gt;&lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples"&gt;OpenSceneGraph cross-platform examples&lt;/a&gt; repository provides cross-platform foundation like resource handling, render window setup, etc.&lt;/li&gt;
  146. &lt;li&gt;&lt;a href="https://github.com/OGStudio/ogs-mahjong-components"&gt;OGS Mahjong components&lt;/a&gt; repository provides Mahjong specific functionality like parsing layout, matching tiles, etc.&lt;/li&gt;
  147. &lt;li&gt;&lt;a href="https://bitbucket.org/ogstudio-games/ogs-mahjong"&gt;OGS Mahjong&lt;/a&gt; repository contains snapshots of &lt;code&gt;OGS Mahjong components&lt;/code&gt; features that comprise specific game version. E.g., &lt;code&gt;Demo 2&lt;/code&gt; version is almost identical to &lt;a href="https://github.com/OGStudio/ogs-mahjong-components/tree/master/05.ColorfulStatus"&gt;05.ColorfulStatus&lt;/a&gt; example of &lt;code&gt;OGS Mahjong components&lt;/code&gt;.&lt;/li&gt;
  148. &lt;/ul&gt;
  149. &lt;p&gt;&lt;strong&gt;Beyond Mahjong solitaire&lt;/strong&gt;&lt;/p&gt;
  150. &lt;p&gt;In addition to &lt;code&gt;seed&lt;/code&gt; parameter, you can let the game use remote layout hosted at GitHub:
  151. &lt;a href="http://ogstudio.github.io/ogs-mahjong?seed=0&amp;amp;layout=github://OGStudio/ogs-mahjong-components/data/cat.layout"&gt;http://ogstudio.github.io/ogs-mahjong?seed=0&amp;amp;layout=github://OGStudio/ogs-mahjong-components/data/cat.layout&lt;/a&gt;&lt;/p&gt;
  152. &lt;p&gt;Utilizing remote resources is an extremely powerful approach allowing anyone
  153. to create a layout of his/her choice and see the layout in action instantly.&lt;/p&gt;
  154. &lt;p&gt;Our next step is to turn game logic into a resource, too.&lt;/p&gt;</content></entry><entry><title>OGS Mahjong 2: Demo 2</title><link href="http://opengamestudio.org/mahjong-demo2-ru.html" rel="alternate"></link><published>2018-10-02T00:00:00+03:00</published><updated>2018-10-02T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-10-02:/mahjong-demo2-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-10-02-mahjong-demo2.png"&gt;&lt;/p&gt;
  155. &lt;p&gt;Мы рады сообщить о выпуске второй демонстрации OGS Mahjong 2. Её целью были
  156. улучшение техники разработки и создание надёжной основы кроссплатформенной
  157. разработки.&lt;/p&gt;
  158. &lt;p&gt;&lt;strong&gt;Выпуск&lt;/strong&gt;&lt;/p&gt;
  159. &lt;p&gt;Запустите последний выпуск OGS Mahjong 2 в вашем браузере:
  160. &lt;a href="http://ogstudio.github.io/ogs-mahjong"&gt;http://ogstudio.github.io/ogs-mahjong&lt;/a&gt;&lt;/p&gt;
  161. &lt;p&gt;Рекомендуем запускать игру с параметром &lt;code&gt;seed&lt;/code&gt; следующим образом:
  162. &lt;a href="http://ogstudio.github.io/ogs-mahjong?seed=0"&gt;http://ogstudio.github.io/ogs-mahjong …&lt;/a&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-10-02-mahjong-demo2.png"&gt;&lt;/p&gt;
  163. &lt;p&gt;Мы рады сообщить о выпуске второй демонстрации OGS Mahjong 2. Её целью были
  164. улучшение техники разработки и создание надёжной основы кроссплатформенной
  165. разработки.&lt;/p&gt;
  166. &lt;p&gt;&lt;strong&gt;Выпуск&lt;/strong&gt;&lt;/p&gt;
  167. &lt;p&gt;Запустите последний выпуск OGS Mahjong 2 в вашем браузере:
  168. &lt;a href="http://ogstudio.github.io/ogs-mahjong"&gt;http://ogstudio.github.io/ogs-mahjong&lt;/a&gt;&lt;/p&gt;
  169. &lt;p&gt;Рекомендуем запускать игру с параметром &lt;code&gt;seed&lt;/code&gt; следующим образом:
  170. &lt;a href="http://ogstudio.github.io/ogs-mahjong?seed=0"&gt;http://ogstudio.github.io/ogs-mahjong?seed=0&lt;/a&gt;&lt;/p&gt;
  171. &lt;p&gt;Это позволяет вам играть в ту же самую раскладку после перезапуска.&lt;/p&gt;
  172. &lt;p&gt;Каждое значение зерна (seed) однозначно задаёт расположение фишек, так что
  173. разные значения зерна дают разнообразие партий.&lt;/p&gt;
  174. &lt;p&gt;&lt;strong&gt;Техника разработки и основа&lt;/strong&gt;&lt;/p&gt;
  175. &lt;p&gt;Во время разработки второй демонстрации мы перешли с обычной разработки на
  176. &lt;a href="http://opengamestudio.org/example-driven-development.html"&gt;разработку через создание примеров&lt;/a&gt;. Это привело к
  177. появлению трёх различных хранилищ для обеспечения разработки OGS Mahjong 2:&lt;/p&gt;
  178. &lt;ul&gt;
  179. &lt;li&gt;Хранилище &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples"&gt;кроссплатформенных примеров OpenSceneGraph&lt;/a&gt; содержит основу вроде работы с ресурсами, создание графического окна и т.д.&lt;/li&gt;
  180. &lt;li&gt;Хранилище &lt;a href="https://github.com/OGStudio/ogs-mahjong-components"&gt;компонент OGS Mahjong&lt;/a&gt; содержит специфичную для Маджонга функциональность вроде разбора раскладки, сопоставления фишек и т.д.&lt;/li&gt;
  181. &lt;li&gt;Хранилище &lt;a href="https://bitbucket.org/ogstudio-games/ogs-mahjong"&gt;OGS Mahjong&lt;/a&gt; содержит снимок набора функциональностей &lt;code&gt;компонент OGS Mahjong&lt;/code&gt;, которые определяют версию игры. Например, версия &lt;code&gt;Demo 2&lt;/code&gt; почти полностью повторяет пример &lt;a href="https://github.com/OGStudio/ogs-mahjong-components/tree/master/05.ColorfulStatus"&gt;05.ColorfulStatus&lt;/a&gt; из &lt;code&gt;компонент OGS Mahjong&lt;/code&gt;.&lt;/li&gt;
  182. &lt;/ul&gt;
  183. &lt;p&gt;&lt;strong&gt;За пределами пасьянса Маджонг&lt;/strong&gt;&lt;/p&gt;
  184. &lt;p&gt;В дополнение к параметру &lt;code&gt;seed&lt;/code&gt; вы можете указать игре использовать удалённую
  185. раскладку, расположенную на GitHub:
  186. &lt;a href="http://ogstudio.github.io/ogs-mahjong?seed=0&amp;amp;layout=github://OGStudio/ogs-mahjong-components/data/cat.layout"&gt;http://ogstudio.github.io/ogs-mahjong?seed=0&amp;amp;layout=github://OGStudio/ogs-mahjong-components/data/cat.layout&lt;/a&gt;&lt;/p&gt;
  187. &lt;p&gt;Использование удалённых ресурсов открывает огромные возможности, т.к. позволяет
  188. любому желающему создать раскладку на свой вкус и моментально её проверить.&lt;/p&gt;
  189. &lt;p&gt;Наш следующий шаг - это выделение игровой логики в виде ресурса.&lt;/p&gt;</content></entry><entry><title>Examples and dependencies</title><link href="http://opengamestudio.org/examples-and-dependencies.html" rel="alternate"></link><published>2018-08-21T00:00:00+03:00</published><updated>2018-08-21T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-08-21:/examples-and-dependencies.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-08-21-examples-and-dependencies.png"&gt;&lt;/p&gt;
  190. &lt;p&gt;This article describes two new OpenSceneGraph cross-platform examples and the
  191. change in handling dependencies.&lt;/p&gt;
  192. &lt;p&gt;&lt;strong&gt;Examples of HTTP client and node selection&lt;/strong&gt;&lt;/p&gt;
  193. &lt;p&gt;Once we finished working on &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples/tree/master/04.RemoteDebugging"&gt;the remote debugging example&lt;/a&gt; and
  194. &lt;a href="http://opengamestudio.org/example-driven-development.html"&gt;reported its completion&lt;/a&gt;, we were surprised by the fact
  195. that secure HTTP connection between a debugged application and debug …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-08-21-examples-and-dependencies.png"&gt;&lt;/p&gt;
  196. &lt;p&gt;This article describes two new OpenSceneGraph cross-platform examples and the
  197. change in handling dependencies.&lt;/p&gt;
  198. &lt;p&gt;&lt;strong&gt;Examples of HTTP client and node selection&lt;/strong&gt;&lt;/p&gt;
  199. &lt;p&gt;Once we finished working on &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples/tree/master/04.RemoteDebugging"&gt;the remote debugging example&lt;/a&gt; and
  200. &lt;a href="http://opengamestudio.org/example-driven-development.html"&gt;reported its completion&lt;/a&gt;, we were surprised by the fact
  201. that secure HTTP connection between a debugged application and debug broker
  202. was only working in the web version of the example. Desktop and mobile versions
  203. only worked with insecure HTTP.&lt;/p&gt;
  204. &lt;p&gt;Since current debug scheme has no authentication, insecure debugging over HTTP
  205. doesn't really hurt. However, if we want to access resources located at popular
  206. sites like GitHub and BitBucket, we have to support secure HTTP.&lt;/p&gt;
  207. &lt;p&gt;The need to support HTTPS on each platform spurred us to create
  208. &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples/tree/master/03.HTTPClient"&gt;HTTP client example&lt;/a&gt;. Turned out, each platform had its own
  209. preferred way of doing secure HTTP:&lt;/p&gt;
  210. &lt;ul&gt;
  211. &lt;li&gt;web (Emscripten) provides Fetch API&lt;/li&gt;
  212. &lt;li&gt;desktop is fine with Mongoose and OpenSSL&lt;/li&gt;
  213. &lt;li&gt;Android provides HttpUrlConnection in Java&lt;/li&gt;
  214. &lt;li&gt;iOS provides NSURLSession in Objective-C&lt;/li&gt;
  215. &lt;/ul&gt;
  216. &lt;p&gt;The need to support different languages on different platforms resulted
  217. in the creation of so-called 'host-guest' pattern:&lt;/p&gt;
  218. &lt;ul&gt;
  219. &lt;li&gt;guest (platform agnostic)&lt;ul&gt;
  220. &lt;li&gt;provides networking representation&lt;/li&gt;
  221. &lt;li&gt;used by cross-platform C++ code&lt;/li&gt;
  222. &lt;/ul&gt;
  223. &lt;/li&gt;
  224. &lt;li&gt;host (specific platform)&lt;ul&gt;
  225. &lt;li&gt;polls guest for pending requests&lt;/li&gt;
  226. &lt;li&gt;processes them&lt;/li&gt;
  227. &lt;li&gt;reports results back to the guest&lt;/li&gt;
  228. &lt;/ul&gt;
  229. &lt;/li&gt;
  230. &lt;/ul&gt;
  231. &lt;p&gt;&lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples/tree/master/05.NodeSelection"&gt;Node selection example&lt;/a&gt; was straightforward and caused no troubles.&lt;/p&gt;
  232. &lt;p&gt;&lt;strong&gt;The change in handling dependencies&lt;/strong&gt;&lt;/p&gt;
  233. &lt;p&gt;For over a year we had to deal with the following
  234. &lt;a href="http://forum.openscenegraph.org/viewtopic.php?t=17443"&gt;shortcomings&lt;/a&gt; when building OpenSceneGraph across platforms
  235. using conventional methods:&lt;/p&gt;
  236. &lt;ul&gt;
  237. &lt;li&gt;macOS builds failing due to certain compile flags we use&lt;/li&gt;
  238. &lt;li&gt;hacking PNG plugin safety guards to have PNG support under Android&lt;/li&gt;
  239. &lt;li&gt;iOS simulator and device builds of the same example being in separate Xcode projects&lt;/li&gt;
  240. &lt;li&gt;OpenSceneGraph taking 20-30 minutes to build&lt;/li&gt;
  241. &lt;/ul&gt;
  242. &lt;p&gt;These shortcomings were slowing us down and complicating the development of
  243. new examples. Upon hitting these problems ten more times this month we decided
  244. it was time to solve them once and for all. Now OpenSceneGraph is built as part
  245. of each example in 2-3 minutes, and there's no more dependency magic involved.
  246. We took the same approach of building dependencies as part of each example to
  247. other external libraries like Mongoose and libpng-android, too.&lt;/p&gt;
  248. &lt;p&gt;With these obstacles out of the way, we can now iterate faster. Just in time
  249. for the next technical demonstration of Mahjong 2!&lt;/p&gt;
  250. &lt;p&gt;That's it for describing two new OpenSceneGraph cross-platform examples and
  251. the change in handling dependencies.&lt;/p&gt;</content></entry><entry><title>Примеры и зависимости</title><link href="http://opengamestudio.org/examples-and-dependencies-ru.html" rel="alternate"></link><published>2018-08-21T00:00:00+03:00</published><updated>2018-08-21T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-08-21:/examples-and-dependencies-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-08-21-examples-and-dependencies.png"&gt;&lt;/p&gt;
  252. &lt;p&gt;Эта статья описывает два новых кросс-платформенных примера OpenSceneGraph
  253. и изменение в работе с зависимостями.&lt;/p&gt;
  254. &lt;p&gt;&lt;strong&gt;Примеры клиента HTTP и выбора узла сцены&lt;/strong&gt;&lt;/p&gt;
  255. &lt;p&gt;После окончания работы над &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples/tree/master/04.RemoteDebugging"&gt;примером удалённой отладки&lt;/a&gt; и
  256. &lt;a href="http://opengamestudio.org/example-driven-development.html"&gt;сообщения об этом&lt;/a&gt; мы с удивлением обнаружили, что
  257. безопасное соединение HTTPS между отлаживаемым приложением и брокером
  258. отладки работало лишь в веб-версии …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-08-21-examples-and-dependencies.png"&gt;&lt;/p&gt;
  259. &lt;p&gt;Эта статья описывает два новых кросс-платформенных примера OpenSceneGraph
  260. и изменение в работе с зависимостями.&lt;/p&gt;
  261. &lt;p&gt;&lt;strong&gt;Примеры клиента HTTP и выбора узла сцены&lt;/strong&gt;&lt;/p&gt;
  262. &lt;p&gt;После окончания работы над &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples/tree/master/04.RemoteDebugging"&gt;примером удалённой отладки&lt;/a&gt; и
  263. &lt;a href="http://opengamestudio.org/example-driven-development.html"&gt;сообщения об этом&lt;/a&gt; мы с удивлением обнаружили, что
  264. безопасное соединение HTTPS между отлаживаемым приложением и брокером
  265. отладки работало лишь в веб-версии примера. Десктопная и мобильная версии
  266. работали лишь с помощью обычного соединения HTTP.&lt;/p&gt;
  267. &lt;p&gt;Т.к. текущая схема отладки не имеет авторизации, отладка по обычному соединению
  268. HTTP не несёт никаких проблем. Однако, если мы хотим получить доступ к ресурсам,
  269. расположенным на популярных сайтах вроде GitHub и BitBucket, мы обязаны
  270. поддерживать HTTPS.&lt;/p&gt;
  271. &lt;p&gt;Необходимость поддержки HTTPS на каждой платформе побудила нас создать
  272. &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples/tree/master/03.HTTPClient"&gt;пример клиента HTTP&lt;/a&gt;. Оказалось, что каждая платформа имеет
  273. собственные правила по работе с HTTPS:&lt;/p&gt;
  274. &lt;ul&gt;
  275. &lt;li&gt;веб (Emscripten) предоставляет Fetch API&lt;/li&gt;
  276. &lt;li&gt;десктоп может использовать Mongoose с OpenSSL&lt;/li&gt;
  277. &lt;li&gt;Android предоставляет HttpUrlConnection в языке Java&lt;/li&gt;
  278. &lt;li&gt;iOS предоставляет NSURLSession в языке Objective-C&lt;/li&gt;
  279. &lt;/ul&gt;
  280. &lt;p&gt;Необходимость поддержки разных языков на разных платформах привела к
  281. созданию так называемого шаблона "хозяин-гость":&lt;/p&gt;
  282. &lt;ul&gt;
  283. &lt;li&gt;гость (не привязан к платформе)&lt;ul&gt;
  284. &lt;li&gt;имеет сетевое представление&lt;/li&gt;
  285. &lt;li&gt;используется кросс-платформенным кодом на C++&lt;/li&gt;
  286. &lt;/ul&gt;
  287. &lt;/li&gt;
  288. &lt;li&gt;хозяин (определённая платформа)&lt;ul&gt;
  289. &lt;li&gt;опрашивает гостя на наличие ожидающих выполнение запросов&lt;/li&gt;
  290. &lt;li&gt;обрабатывает их&lt;/li&gt;
  291. &lt;li&gt;сообщает результат гостю&lt;/li&gt;
  292. &lt;/ul&gt;
  293. &lt;/li&gt;
  294. &lt;/ul&gt;
  295. &lt;p&gt;&lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples/tree/master/05.NodeSelection"&gt;Пример выбора узла сцены&lt;/a&gt; оказался простым и не создал особых проблем.&lt;/p&gt;
  296. &lt;p&gt;&lt;strong&gt;Изменение в работе с зависимостями&lt;/strong&gt;&lt;/p&gt;
  297. &lt;p&gt;Больше года нам приходилось жить со следующими &lt;a href="http://forum.openscenegraph.org/viewtopic.php?t=17443"&gt;недостатками&lt;/a&gt;
  298. сборки OpenSceneGraph официальными средствами:&lt;/p&gt;
  299. &lt;ul&gt;
  300. &lt;li&gt;проблемы сборки под macOS ввиду использования определённых флагов сборки&lt;/li&gt;
  301. &lt;li&gt;обход механизмов проверки зависимостей для использования PNG на Android&lt;/li&gt;
  302. &lt;li&gt;принадлежность сборок iOS под симулятор и устройство к разным проектам Xcode&lt;/li&gt;
  303. &lt;li&gt;ожидания в 20-30 минут для сборки OpenSceneGraph&lt;/li&gt;
  304. &lt;/ul&gt;
  305. &lt;p&gt;Эти недостатки замедляли нас и усложняли разработку новых примеров. После того,
  306. как мы десятый раз столкнулись с указанными проблемами в этом месяце, мы решили
  307. исправить их раз и навсегда. Теперь мы собираем OpenSceneGraph как часть каждого
  308. примера за 2-3 минуты без какой-либо магии. Также мы использовали этот подход
  309. включения зависимости как части каждого примера для остальных библиотек вроде
  310. Mongoose и libpng-android. &lt;/p&gt;
  311. &lt;p&gt;Теперь без этих препятствий мы можем разрабатывать быстрее. Это значительно
  312. облегчит создание следующей технической демонстрации Mahjong 2!&lt;/p&gt;
  313. &lt;p&gt;На этом мы заканчиваем описание двух новых кросс-платформенных примеров
  314. OpenSceneGraph и изменения в работе с зависимостями.&lt;/p&gt;</content></entry><entry><title>Example-driven development</title><link href="http://opengamestudio.org/example-driven-development.html" rel="alternate"></link><published>2018-06-27T00:00:00+03:00</published><updated>2018-06-27T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-06-27:/example-driven-development.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-06-27-example-driven-development.png"&gt;&lt;/p&gt;
  315. &lt;p&gt;This article explains how the third OpenSceneGraph cross-platform example
  316. opened our eyes to example-driven development.&lt;/p&gt;
  317. &lt;p&gt;&lt;strong&gt;2018-08 EDIT&lt;/strong&gt;: the third example has been renamed to the fourth one due to
  318. the reasons described in the &lt;a href="http://opengamestudio.org/examples-and-dependencies.html"&gt;next article&lt;/a&gt;.&lt;/p&gt;
  319. &lt;p&gt;&lt;strong&gt;The third OpenSceneGraph cross-platform example&lt;/strong&gt;&lt;/p&gt;
  320. &lt;p&gt;The third OpenSceneGraph cross-platform example explains how to implement …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-06-27-example-driven-development.png"&gt;&lt;/p&gt;
  321. &lt;p&gt;This article explains how the third OpenSceneGraph cross-platform example
  322. opened our eyes to example-driven development.&lt;/p&gt;
  323. &lt;p&gt;&lt;strong&gt;2018-08 EDIT&lt;/strong&gt;: the third example has been renamed to the fourth one due to
  324. the reasons described in the &lt;a href="http://opengamestudio.org/examples-and-dependencies.html"&gt;next article&lt;/a&gt;.&lt;/p&gt;
  325. &lt;p&gt;&lt;strong&gt;The third OpenSceneGraph cross-platform example&lt;/strong&gt;&lt;/p&gt;
  326. &lt;p&gt;The third OpenSceneGraph cross-platform example explains how to implement
  327. &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples/tree/master/04.RemoteDebugging"&gt;remote debugging across platforms&lt;/a&gt;. This example is less about
  328. OpenSceneGraph and more about different platforms.&lt;/p&gt;
  329. &lt;p&gt;Remote anything nowadays assumes the use of HTTP(s) over TCP/IP. Thus, the
  330. first idea was to embed HTTP server into an application and let HTTP clients
  331. interact with the server. However, serving HTTP across all platforms is
  332. complicated:&lt;/p&gt;
  333. &lt;ul&gt;
  334. &lt;li&gt;desktops have firewalls&lt;/li&gt;
  335. &lt;li&gt;mobiles have restrictions on background processes&lt;/li&gt;
  336. &lt;li&gt;web browsers are HTTP clients by design&lt;/li&gt;
  337. &lt;/ul&gt;
  338. &lt;p&gt;That's why we decided to create a mediator between debugged application and UI.
  339. &lt;a href="https://github.com/OGStudio/debug-broker"&gt;Debug broker&lt;/a&gt;, a small Node.js application, became that mediator.
  340. Debug broker uses no external dependencies, so it's easy to run virtually
  341. anywhere. Also, since debug broker is a server application, you can configure
  342. it once and use it for any number of applications.&lt;/p&gt;
  343. &lt;p&gt;Both &lt;a href="https://github.com/OGStudio/debug-ui"&gt;debug UI&lt;/a&gt; and &lt;a href="https://github.com/OGStudio/debug-broker"&gt;debug broker&lt;/a&gt; use JavaScript
  344. because we wanted these tools to be accessible from anywhere with no prior
  345. installation. This decision limited us to web browser solution. Providing
  346. any sort of desktop application would incur additional installation and
  347. maintenance effort, which would only complicate the tools.&lt;/p&gt;
  348. &lt;p&gt;&lt;strong&gt;Example-driven development establishment&lt;/strong&gt;&lt;/p&gt;
  349. &lt;p&gt;Once the third example was implemented, we realized how important and
  350. beneficial it is to develop new features outside the main project:&lt;/p&gt;
  351. &lt;ul&gt;
  352. &lt;li&gt;the main project is freed from excessive commit noise&lt;/li&gt;
  353. &lt;li&gt;a new feature is publicly shared for everyone to learn, criticize, and improve&lt;/li&gt;
  354. &lt;/ul&gt;
  355. &lt;p&gt;When we publicly share our knowledge:&lt;/p&gt;
  356. &lt;ul&gt;
  357. &lt;li&gt;we must create documentation for everyone (including ourselves later) to understand what's going on&lt;/li&gt;
  358. &lt;li&gt;we must not use hacks because that would break your trust in us&lt;/li&gt;
  359. &lt;/ul&gt;
  360. &lt;p&gt;From now on, all new features like input handling, Mahjong layout loading,
  361. resource caching, etc. are going to be first implemented as examples.
  362. We call this example-driven development.&lt;/p&gt;
  363. &lt;p&gt;That's it for explaining how the third OpenSceneGraph cross-platform example
  364. opened our eyes to example-driven development.&lt;/p&gt;</content></entry><entry><title>Разработка через создание примеров</title><link href="http://opengamestudio.org/example-driven-development-ru.html" rel="alternate"></link><published>2018-06-27T00:00:00+03:00</published><updated>2018-06-27T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-06-27:/example-driven-development-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-06-27-example-driven-development.png"&gt;&lt;/p&gt;
  365. &lt;p&gt;Эта статья описывает то, как создание третьего кросс-платформенного примера
  366. OpenSceneGraph привело нас к разработке через создание примеров.&lt;/p&gt;
  367. &lt;p&gt;&lt;strong&gt;ИЗМЕНЕНИЯ ОТ 2018-08&lt;/strong&gt;: третий пример был переименован в четвёртый в связи
  368. с причинами, изложенными в &lt;a href="http://opengamestudio.org/examples-and-dependencies-ru.html"&gt;следующей статье&lt;/a&gt;.&lt;/p&gt;
  369. &lt;p&gt;&lt;strong&gt;Третий кросс-платформенный пример OpenSceneGraph&lt;/strong&gt;&lt;/p&gt;
  370. &lt;p&gt;Третий кросс-платформенный пример OpenSceneGraph содержит реализацию
  371. &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples/tree/master/03.RemoteDebugging"&gt;удалённой отладки, работающей на всех поддерживаемых …&lt;/a&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-06-27-example-driven-development.png"&gt;&lt;/p&gt;
  372. &lt;p&gt;Эта статья описывает то, как создание третьего кросс-платформенного примера
  373. OpenSceneGraph привело нас к разработке через создание примеров.&lt;/p&gt;
  374. &lt;p&gt;&lt;strong&gt;ИЗМЕНЕНИЯ ОТ 2018-08&lt;/strong&gt;: третий пример был переименован в четвёртый в связи
  375. с причинами, изложенными в &lt;a href="http://opengamestudio.org/examples-and-dependencies-ru.html"&gt;следующей статье&lt;/a&gt;.&lt;/p&gt;
  376. &lt;p&gt;&lt;strong&gt;Третий кросс-платформенный пример OpenSceneGraph&lt;/strong&gt;&lt;/p&gt;
  377. &lt;p&gt;Третий кросс-платформенный пример OpenSceneGraph содержит реализацию
  378. &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples/tree/master/03.RemoteDebugging"&gt;удалённой отладки, работающей на всех поддерживаемых платформах&lt;/a&gt;.
  379. Этот пример относится не столько к OpenSceneGraph, сколько к поддержке
  380. различных платформ.&lt;/p&gt;
  381. &lt;p&gt;Удалённое взаимодействие ныне предполагает использование HTTP(s) поверх
  382. TCP/IP. Таким образом, первая идея реализации подразумевала встраивание сервера
  383. HTTP в приложение, чтобы клиенты HTTP могли взаимодействовать с этим сервером.
  384. Однако, раздача HTTP на различных платформах имеет свои сложности:&lt;/p&gt;
  385. &lt;ul&gt;
  386. &lt;li&gt;на десктопах есть межсетевые экраны (firewalls)&lt;/li&gt;
  387. &lt;li&gt;на мобилках есть ограничения по работе фоновых процессов&lt;/li&gt;
  388. &lt;li&gt;веб-браузеры являются клиентами HTTP по дизайну&lt;/li&gt;
  389. &lt;/ul&gt;
  390. &lt;p&gt;Эти ограничения подтолкнули нас к созданию посредника между отлаживаемым
  391. приложением и пользовательским интерфейсом отладки.
  392. &lt;a href="https://github.com/OGStudio/debug-broker"&gt;Брокер отладки&lt;/a&gt;, небольшое приложение Node.js, стало тем самым
  393. посредником. Брокер отладки не имеет внешних зависимостей, поэтому его легко
  394. использовать практически везде. Благодаря тому, что брокер отладки - это
  395. серверное приложение, его достаточно настроить лишь раз и использовать для
  396. любого количества приложений.&lt;/p&gt;
  397. &lt;p&gt;И &lt;a href="https://github.com/OGStudio/debug-ui"&gt;пользовательский интерфейс отладки&lt;/a&gt;,
  398. и &lt;a href="https://github.com/OGStudio/debug-broker"&gt;брокер отладки&lt;/a&gt; используют JavaScript, т.к. мы хотели сделать
  399. эти инструменты максимально доступными без предварительной установки. Данное
  400. решение привело нас к реализации инструментов именно для веб-браузеров.
  401. Десктопное приложение потребовало бы дополнительных усилий на установку и
  402. поддержку, что лишь усложнило бы работу с инструментами.&lt;/p&gt;
  403. &lt;p&gt;&lt;strong&gt;Разработка через создание примеров&lt;/strong&gt;&lt;/p&gt;
  404. &lt;p&gt;После создания третьего примера мы осознали важность и достоинства разработки
  405. новых функций вне основного проекта:&lt;/p&gt;
  406. &lt;ul&gt;
  407. &lt;li&gt;освобождение основного проекта от шума изменений (commit noise)&lt;/li&gt;
  408. &lt;li&gt;публичное освещение новой функции приглашает всех к её изучению, критике и улучшению&lt;/li&gt;
  409. &lt;/ul&gt;
  410. &lt;p&gt;Когда мы делимся нашими знаниями:&lt;/p&gt;
  411. &lt;ul&gt;
  412. &lt;li&gt;мы обязаны создавать документацию, объясняющую происходящее (в том числе для нас самих позже)&lt;/li&gt;
  413. &lt;li&gt;мы обязаны сторониться непродуманных решений, т.к. они повредят нашей репутации&lt;/li&gt;
  414. &lt;/ul&gt;
  415. &lt;p&gt;С этого момента все новые функции вроде обработки ввода, загрузки раскладок
  416. Маджонга, кэширования ресурсов и т.п. мы будем сначала реализовывать в виде
  417. примеров. Мы называем этот подход разработкой через создание примеров.&lt;/p&gt;
  418. &lt;p&gt;На этом мы заканчиваем описание того, как создание третьего
  419. кросс-платформенного примера OpenSceneGraph привело нас к разработке через
  420. создание примеров.&lt;/p&gt;</content></entry><entry><title>OpenSceneGraph cross-platform examples</title><link href="http://opengamestudio.org/openscenegraph-examples.html" rel="alternate"></link><published>2018-04-20T00:00:00+03:00</published><updated>2018-04-20T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-04-20:/openscenegraph-examples.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-04-20-openscenegraph-examples.png"&gt;&lt;/p&gt;
  421. &lt;p&gt;This article summarizes the work we did to produce the first two
  422. cross-platform OpenSceneGraph examples.&lt;/p&gt;
  423. &lt;p&gt;By the time &lt;a href="http://opengamestudio.org/mahjong-techdemo1-gameplay.html"&gt;the first technology demonstration of OGS Mahjong 2&lt;/a&gt;
  424. has been released, we've already had &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/issues/4"&gt;issue request&lt;/a&gt;
  425. (to explain how to load images with OpenSceneGraph on Android) hanging for some
  426. time. We considered …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-04-20-openscenegraph-examples.png"&gt;&lt;/p&gt;
  427. &lt;p&gt;This article summarizes the work we did to produce the first two
  428. cross-platform OpenSceneGraph examples.&lt;/p&gt;
  429. &lt;p&gt;By the time &lt;a href="http://opengamestudio.org/mahjong-techdemo1-gameplay.html"&gt;the first technology demonstration of OGS Mahjong 2&lt;/a&gt;
  430. has been released, we've already had &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/issues/4"&gt;issue request&lt;/a&gt;
  431. (to explain how to load images with OpenSceneGraph on Android) hanging for some
  432. time. We considered creating a new tutorial for
  433. &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide"&gt;OpenSceneGraph cross-platform guide&lt;/a&gt; at first. However, we realized
  434. that it's time-consuming and excessive for such a tiny topic (compared to
  435. what an average game has) as image loading. We decided to continue sharing our
  436. knowledge in the form of concrete examples. That's how
  437. &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples"&gt;OpenSceneGraph cross-platform examples&lt;/a&gt; were born.&lt;/p&gt;
  438. &lt;p&gt;Each example:&lt;/p&gt;
  439. &lt;ul&gt;
  440. &lt;li&gt;explains crucial code necessary to perform a specific task&lt;/li&gt;
  441. &lt;li&gt;accents platform-specific nuances&lt;/li&gt;
  442. &lt;li&gt;provides implementations to cover desktop, mobile, and web platforms&lt;/li&gt;
  443. &lt;li&gt;provides a web build to showcase results&lt;/li&gt;
  444. &lt;/ul&gt;
  445. &lt;p&gt;The first two examples cover the following topics:&lt;/p&gt;
  446. &lt;ul&gt;
  447. &lt;li&gt;Embed resource into executable: this greatly simplifies resource handling across platforms&lt;/li&gt;
  448. &lt;li&gt;Use PNG images with PNG plugins: this explains the requirements necessary to build and use PNG plugins&lt;/li&gt;
  449. &lt;/ul&gt;
  450. &lt;p&gt;We will be adding new examples as we proceed with OGS Mahjong 2 development.&lt;/p&gt;
  451. &lt;p&gt;That's it for summarizing the work we did to produce the first two cross-platform OpenSceneGraph examples.&lt;/p&gt;</content></entry><entry><title>Кросс-платформенные примеры OpenSceneGraph</title><link href="http://opengamestudio.org/openscenegraph-examples-ru.html" rel="alternate"></link><published>2018-04-20T00:00:00+03:00</published><updated>2018-04-20T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-04-20:/openscenegraph-examples-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-04-20-openscenegraph-examples.png"&gt;&lt;/p&gt;
  452. &lt;p&gt;Эта статья резюмирует создание первых двух кросс-платформенных примеров
  453. OpenSceneGraph.&lt;/p&gt;
  454. &lt;p&gt;К тому времени, как мы выпустили
  455. &lt;a href="http://opengamestudio.org/mahjong-techdemo1-gameplay-ru.html"&gt;первую техническую демонстрацию OGS Mahjong 2&lt;/a&gt;, нас уже дожидался
  456. &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/issues/4"&gt;запрос на описание работы с изображениями&lt;/a&gt; в
  457. OpenSceneGraph на Android. Сначала мы рассматривали возможность создания нового
  458. самоучителя для &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide"&gt;кросс-платформенного руководства OpenSceneGraph&lt;/a&gt;, но
  459. позже мы оценили необходимые …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-04-20-openscenegraph-examples.png"&gt;&lt;/p&gt;
  460. &lt;p&gt;Эта статья резюмирует создание первых двух кросс-платформенных примеров
  461. OpenSceneGraph.&lt;/p&gt;
  462. &lt;p&gt;К тому времени, как мы выпустили
  463. &lt;a href="http://opengamestudio.org/mahjong-techdemo1-gameplay-ru.html"&gt;первую техническую демонстрацию OGS Mahjong 2&lt;/a&gt;, нас уже дожидался
  464. &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/issues/4"&gt;запрос на описание работы с изображениями&lt;/a&gt; в
  465. OpenSceneGraph на Android. Сначала мы рассматривали возможность создания нового
  466. самоучителя для &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide"&gt;кросс-платформенного руководства OpenSceneGraph&lt;/a&gt;, но
  467. позже мы оценили необходимые трудозатраты и посчитали их излишними для
  468. освещения такой небольшой темы (по сравнению с тем, что умеет средняя игра)
  469. как загрузка изображений. Мы решили продолжить делиться нашими знаниями в виде
  470. конкретных примеров. Так на свет появились
  471. &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples"&gt;кросс-платформенные примеры OpenSceneGraph&lt;/a&gt;.&lt;/p&gt;
  472. &lt;p&gt;Каждый пример:&lt;/p&gt;
  473. &lt;ul&gt;
  474. &lt;li&gt;объясняет критически важный код для выполнения поставленной задачи&lt;/li&gt;
  475. &lt;li&gt;акцентирует внимание на нюансах, специфичных для каждой платформы&lt;/li&gt;
  476. &lt;li&gt;предоставляет реализации примера для десктопа, мобилок и веба&lt;/li&gt;
  477. &lt;li&gt;предоставляет сборку для веба, чтобы упростить оценку результата&lt;/li&gt;
  478. &lt;/ul&gt;
  479. &lt;p&gt;Первая пара примеров освещает следующие темы:&lt;/p&gt;
  480. &lt;ul&gt;
  481. &lt;li&gt;Встраивание ресурсов в исполняемый файл: значительное упрощение работы с ресурсами на всех платформах&lt;/li&gt;
  482. &lt;li&gt;Использование изображений PNG с помощью плагинов PNG: описание требований, необходимых для сборки и использования плагинов PNG&lt;/li&gt;
  483. &lt;/ul&gt;
  484. &lt;p&gt;Мы будем и впредь добавлять новые примеры по мере продвижения нашей разработки OGS Mahjong 2.&lt;/p&gt;
  485. &lt;p&gt;На этом мы заканчиваем резюме о создании первых двух кросс-платформенных примеров OpenSceneGraph.&lt;/p&gt;</content></entry><entry><title>First techdemo of OGS Mahjong 2: Gameplay</title><link href="http://opengamestudio.org/mahjong-techdemo1-gameplay.html" rel="alternate"></link><published>2018-02-16T00:00:00+03:00</published><updated>2018-02-16T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-02-16:/mahjong-techdemo1-gameplay.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-02-16-mahjong-techdemo1-gameplay.png"&gt;&lt;/p&gt;
  486. &lt;p&gt;We are glad to announce the release of the first technical demonstration of
  487. OGS Mahjong 2. The purpose of this release was to verify gameplay across
  488. supported platforms.&lt;/p&gt;
  489. &lt;p&gt;Get techdemo for your platform:&lt;/p&gt;
  490. &lt;ul&gt;
  491. &lt;li&gt;Run &lt;a href="https://ogstudio.github.io/game-mahjong/versions/013/mjin-player.html"&gt;Web version&lt;/a&gt; in your browser&lt;/li&gt;
  492. &lt;li&gt;Get &lt;a href="https://drive.google.com/open?id=1KW8IEN8Dpz8ODeg8BctVSJyzj9-AL9hR"&gt;Android version&lt;/a&gt;&lt;/li&gt;
  493. &lt;li&gt;Get &lt;a href="https://drive.google.com/open?id=1oj0-OXSmEatttzn86u2vgP9SRAIC0ozB"&gt;Windows version&lt;/a&gt;&lt;/li&gt;
  494. &lt;li&gt;Get &lt;a href="https://drive.google.com/open?id=1EX7kLIThLiMz9_W7VmBPySms3mlrF-i6"&gt;Linux version&lt;/a&gt;&lt;/li&gt;
  495. &lt;li&gt;Get &lt;a href="https://drive.google.com/open?id=1KWnvbHzan8MpMcZPG2QC-7KWoEYbqrM2"&gt;macOS …&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-02-16-mahjong-techdemo1-gameplay.png"&gt;&lt;/p&gt;
  496. &lt;p&gt;We are glad to announce the release of the first technical demonstration of
  497. OGS Mahjong 2. The purpose of this release was to verify gameplay across
  498. supported platforms.&lt;/p&gt;
  499. &lt;p&gt;Get techdemo for your platform:&lt;/p&gt;
  500. &lt;ul&gt;
  501. &lt;li&gt;Run &lt;a href="https://ogstudio.github.io/game-mahjong/versions/013/mjin-player.html"&gt;Web version&lt;/a&gt; in your browser&lt;/li&gt;
  502. &lt;li&gt;Get &lt;a href="https://drive.google.com/open?id=1KW8IEN8Dpz8ODeg8BctVSJyzj9-AL9hR"&gt;Android version&lt;/a&gt;&lt;/li&gt;
  503. &lt;li&gt;Get &lt;a href="https://drive.google.com/open?id=1oj0-OXSmEatttzn86u2vgP9SRAIC0ozB"&gt;Windows version&lt;/a&gt;&lt;/li&gt;
  504. &lt;li&gt;Get &lt;a href="https://drive.google.com/open?id=1EX7kLIThLiMz9_W7VmBPySms3mlrF-i6"&gt;Linux version&lt;/a&gt;&lt;/li&gt;
  505. &lt;li&gt;Get &lt;a href="https://drive.google.com/open?id=1KWnvbHzan8MpMcZPG2QC-7KWoEYbqrM2"&gt;macOS version&lt;/a&gt;&lt;/li&gt;
  506. &lt;/ul&gt;
  507. &lt;p&gt;Notes:&lt;/p&gt;
  508. &lt;ul&gt;
  509. &lt;li&gt;iOS version is not released because it cannot be easily shared outside AppStore.&lt;/li&gt;
  510. &lt;li&gt;Launch &lt;code&gt;run&lt;/code&gt; script under Linux and macOS.&lt;/li&gt;
  511. &lt;li&gt;Linux version is only available in 64-bit variant.&lt;/li&gt;
  512. &lt;li&gt;macOS version should run on macOS Sierra or newer.&lt;/li&gt;
  513. &lt;/ul&gt;
  514. &lt;p&gt;That's it for now, have a nice testing!&lt;/p&gt;</content></entry><entry><title>Первая технодемка OGS Mahjong 2: Игровая механика</title><link href="http://opengamestudio.org/mahjong-techdemo1-gameplay-ru.html" rel="alternate"></link><published>2018-02-16T00:00:00+03:00</published><updated>2018-02-16T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-02-16:/mahjong-techdemo1-gameplay-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-02-16-mahjong-techdemo1-gameplay.png"&gt;&lt;/p&gt;
  515. &lt;p&gt;Мы ради сообщить о выпуске первой технической демонастрации OGS Mahjong 2.
  516. Её цель была в проверке игровой механики на всех поддерживаемых платформах.&lt;/p&gt;
  517. &lt;p&gt;Проверьте технодемку на своей платформе:&lt;/p&gt;
  518. &lt;ul&gt;
  519. &lt;li&gt;Запустить &lt;a href="https://ogstudio.github.io/game-mahjong/versions/013/mjin-player.html"&gt;версию для веба&lt;/a&gt; в браузере&lt;/li&gt;
  520. &lt;li&gt;Получить &lt;a href="https://drive.google.com/open?id=1KW8IEN8Dpz8ODeg8BctVSJyzj9-AL9hR"&gt;версию для Android&lt;/a&gt;&lt;/li&gt;
  521. &lt;li&gt;Получить &lt;a href="https://drive.google.com/open?id=1oj0-OXSmEatttzn86u2vgP9SRAIC0ozB"&gt;версию для Windows&lt;/a&gt;&lt;/li&gt;
  522. &lt;li&gt;Получить &lt;a href="https://drive.google.com/open?id=1EX7kLIThLiMz9_W7VmBPySms3mlrF-i6"&gt;версию для Linux&lt;/a&gt;&lt;/li&gt;
  523. &lt;li&gt;Получить &lt;a href="https://drive.google.com/open?id=1KWnvbHzan8MpMcZPG2QC-7KWoEYbqrM2"&gt;версию для macOS&lt;/a&gt;&lt;/li&gt;
  524. &lt;/ul&gt;
  525. &lt;p&gt;Замечания …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-02-16-mahjong-techdemo1-gameplay.png"&gt;&lt;/p&gt;
  526. &lt;p&gt;Мы ради сообщить о выпуске первой технической демонастрации OGS Mahjong 2.
  527. Её цель была в проверке игровой механики на всех поддерживаемых платформах.&lt;/p&gt;
  528. &lt;p&gt;Проверьте технодемку на своей платформе:&lt;/p&gt;
  529. &lt;ul&gt;
  530. &lt;li&gt;Запустить &lt;a href="https://ogstudio.github.io/game-mahjong/versions/013/mjin-player.html"&gt;версию для веба&lt;/a&gt; в браузере&lt;/li&gt;
  531. &lt;li&gt;Получить &lt;a href="https://drive.google.com/open?id=1KW8IEN8Dpz8ODeg8BctVSJyzj9-AL9hR"&gt;версию для Android&lt;/a&gt;&lt;/li&gt;
  532. &lt;li&gt;Получить &lt;a href="https://drive.google.com/open?id=1oj0-OXSmEatttzn86u2vgP9SRAIC0ozB"&gt;версию для Windows&lt;/a&gt;&lt;/li&gt;
  533. &lt;li&gt;Получить &lt;a href="https://drive.google.com/open?id=1EX7kLIThLiMz9_W7VmBPySms3mlrF-i6"&gt;версию для Linux&lt;/a&gt;&lt;/li&gt;
  534. &lt;li&gt;Получить &lt;a href="https://drive.google.com/open?id=1KWnvbHzan8MpMcZPG2QC-7KWoEYbqrM2"&gt;версию для macOS&lt;/a&gt;&lt;/li&gt;
  535. &lt;/ul&gt;
  536. &lt;p&gt;Замечания:&lt;/p&gt;
  537. &lt;ul&gt;
  538. &lt;li&gt;Версия для iOS не выпущена, т.к. нет простого способа её распространения вне AppStore.&lt;/li&gt;
  539. &lt;li&gt;Запустите скрипт &lt;code&gt;run&lt;/code&gt; в версиях для Linux и macOS.&lt;/li&gt;
  540. &lt;li&gt;Версия для Linux доступна лишь в 64-битном варианте.&lt;/li&gt;
  541. &lt;li&gt;Версия для macOS должна работать на macOS Sierra или новее.&lt;/li&gt;
  542. &lt;/ul&gt;
  543. &lt;p&gt;На сегодня это всё, хорошей проверки!&lt;/p&gt;</content></entry><entry><title>Mahjong recreation start</title><link href="http://opengamestudio.org/mahjong-recreation-start.html" rel="alternate"></link><published>2018-01-26T00:00:00+03:00</published><updated>2018-01-26T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-01-26:/mahjong-recreation-start.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-01-26-mahjong-recreation-start.png"&gt;&lt;/p&gt;
  544. &lt;p&gt;This article describes the start of Mahjong game recreation.&lt;/p&gt;
  545. &lt;p&gt;&lt;strong&gt;Plan&lt;/strong&gt;&lt;/p&gt;
  546. &lt;p&gt;We started Mahjong recreation endeavour by composing a brief plan to get gameplay with minimal graphics:&lt;/p&gt;
  547. &lt;ul&gt;
  548. &lt;li&gt;Load single layout&lt;/li&gt;
  549. &lt;li&gt;Place tiles in layout positions&lt;/li&gt;
  550. &lt;li&gt;Distinguish tiles&lt;/li&gt;
  551. &lt;li&gt;Implement selection&lt;/li&gt;
  552. &lt;li&gt;Implement matching&lt;/li&gt;
  553. &lt;/ul&gt;
  554. &lt;p&gt;Just like any other plan, this one looked fine at …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-01-26-mahjong-recreation-start.png"&gt;&lt;/p&gt;
  555. &lt;p&gt;This article describes the start of Mahjong game recreation.&lt;/p&gt;
  556. &lt;p&gt;&lt;strong&gt;Plan&lt;/strong&gt;&lt;/p&gt;
  557. &lt;p&gt;We started Mahjong recreation endeavour by composing a brief plan to get gameplay with minimal graphics:&lt;/p&gt;
  558. &lt;ul&gt;
  559. &lt;li&gt;Load single layout&lt;/li&gt;
  560. &lt;li&gt;Place tiles in layout positions&lt;/li&gt;
  561. &lt;li&gt;Distinguish tiles&lt;/li&gt;
  562. &lt;li&gt;Implement selection&lt;/li&gt;
  563. &lt;li&gt;Implement matching&lt;/li&gt;
  564. &lt;/ul&gt;
  565. &lt;p&gt;Just like any other plan, this one looked fine at first sight. However, once you get down to work, new details start to come out. This plan was no exception. Below are a few problems that came out during development.&lt;/p&gt;
  566. &lt;p&gt;&lt;strong&gt;Problem №1: provide binary resources across supported platforms&lt;/strong&gt;&lt;/p&gt;
  567. &lt;p&gt;Mahjong is going to be available on desktop, mobile, and web. Each of these platforms has its constraints on accessing external files:&lt;/p&gt;
  568. &lt;ul&gt;
  569. &lt;li&gt;Desktop can access almost any file&lt;/li&gt;
  570. &lt;li&gt;Android/iOS have limited access to file system&lt;/li&gt;
  571. &lt;li&gt;Web does not have any file system at all&lt;/li&gt;
  572. &lt;/ul&gt;
  573. &lt;p&gt;To provide a unified way for accessing resources, we decided to include them into final executable. This decision led to the birth of &lt;strong&gt;mjin-resource&lt;/strong&gt; and &lt;strong&gt;mahjong-data&lt;/strong&gt; projects.&lt;/p&gt;
  574. &lt;p&gt;&lt;a href="https://bitbucket.org/ogstudio/mjin-resource"&gt;mjin-resource&lt;/a&gt;:&lt;/p&gt;
  575. &lt;ul&gt;
  576. &lt;li&gt;converts binary files to C header files with the help of &lt;strong&gt;xxd&lt;/strong&gt; utility&lt;/li&gt;
  577. &lt;li&gt;generates MJIN project that contains generated headers to be compiled into static library&lt;/li&gt;
  578. &lt;li&gt;provides C++ interface for accessing generated resources&lt;/li&gt;
  579. &lt;/ul&gt;
  580. &lt;p&gt;&lt;a href="https://bitbucket.org/ogstudio-games/mahjong-data"&gt;mahjong-data&lt;/a&gt; is an example of such generated MJIN project that is referenced by &lt;a href="https://bitbucket.org/ogstudio-games/mahjong"&gt;mahjong&lt;/a&gt; project.&lt;/p&gt;
  581. &lt;p&gt;&lt;strong&gt;Problem №2: load PNG images across supported platforms&lt;/strong&gt;&lt;/p&gt;
  582. &lt;p&gt;To load PNG, we use corresponding OpenSceneGraph plugin. We built it for desktop with no issues. Building for web (Emscripten) turned out to be more difficult: Emscripten provides its own version of &lt;strong&gt;libpng&lt;/strong&gt;, which OpenSceneGraph build script can't detect. We had to work around several OpenSceneGraph checks to successfully build the plugin for Emscripten.
  583. Building the plugin for Android and iOS is still waiting for us. Once we get PNG plugin working across supported platforms, we are going to publish a new tutorial for &lt;a href="https://github.com/ogstudio/openscenegraph-cross-platform-guide"&gt;OpenSceneGraph cross-platform guide&lt;/a&gt; to cover PNG image loading. We already got a &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/issues/4"&gt;request to describe image loading&lt;/a&gt;.&lt;/p&gt;
  584. &lt;p&gt;&lt;strong&gt;Development&lt;/strong&gt;&lt;/p&gt;
  585. &lt;p&gt;&lt;a href="http://opengamestudio.org/lets-go.html"&gt;As you know&lt;/a&gt;, we published OpenSceneGraph cross-platform guide to make OpenSceneGraph community stronger. We value education, and we love to share our knowledge. That's why we decided to develop Mahjong in small reproducible chunks uniquely identified by internal versions. These versions are available in &lt;a href="https://bitbucket.org/ogstudio-games/mahjong"&gt;mahjong repository&lt;/a&gt;.&lt;/p&gt;
  586. &lt;p&gt;We also provide &lt;a href="http://ogstudio.github.io/game-mahjong"&gt;version history and web releases of each internal version&lt;/a&gt; for the following reasons:&lt;/p&gt;
  587. &lt;ul&gt;
  588. &lt;li&gt;education: show how development looks like internally&lt;/li&gt;
  589. &lt;li&gt;accessibility: provide older versions for comparison&lt;/li&gt;
  590. &lt;/ul&gt;
  591. &lt;p&gt;&lt;strong&gt;Current Mahjong game status&lt;/strong&gt;&lt;/p&gt;
  592. &lt;p&gt;As of the time of this writing, we have implemented tile selection. &lt;a href="https://ogstudio.github.io/game-mahjong/versions/010/mjin-player.html"&gt;Try it in your browser!&lt;/a&gt;&lt;/p&gt;
  593. &lt;p&gt;Once we finish tile matching implementation, we are going to publish the intermediate result for all supported platforms.&lt;/p&gt;
  594. &lt;p&gt;That's it for describing the start of Mahjong game recreation.&lt;/p&gt;</content></entry><entry><title>Начало воссоздания Маджонга</title><link href="http://opengamestudio.org/mahjong-recreation-start-ru.html" rel="alternate"></link><published>2018-01-26T00:00:00+03:00</published><updated>2018-01-26T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2018-01-26:/mahjong-recreation-start-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-01-26-mahjong-recreation-start.png"&gt;&lt;/p&gt;
  595. &lt;p&gt;Эта статья описывает начало воссоздания игры Маджонг.&lt;/p&gt;
  596. &lt;p&gt;&lt;strong&gt;План&lt;/strong&gt;&lt;/p&gt;
  597. &lt;p&gt;Мы начали воссоздание Маджонга с составления краткого плана реализации игровой механики с минимальной графикой:&lt;/p&gt;
  598. &lt;ul&gt;
  599. &lt;li&gt;Загрузить раскладку&lt;/li&gt;
  600. &lt;li&gt;Поместить фишки в позиции раскладки&lt;/li&gt;
  601. &lt;li&gt;Различить фишки&lt;/li&gt;
  602. &lt;li&gt;Реализовать выбор фишек&lt;/li&gt;
  603. &lt;li&gt;Реализовать сравнение фишек&lt;/li&gt;
  604. &lt;/ul&gt;
  605. &lt;p&gt;Как и любой другой план, этот выглядел вполне адекватно на первый взгляд. Тем …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2018-01-26-mahjong-recreation-start.png"&gt;&lt;/p&gt;
  606. &lt;p&gt;Эта статья описывает начало воссоздания игры Маджонг.&lt;/p&gt;
  607. &lt;p&gt;&lt;strong&gt;План&lt;/strong&gt;&lt;/p&gt;
  608. &lt;p&gt;Мы начали воссоздание Маджонга с составления краткого плана реализации игровой механики с минимальной графикой:&lt;/p&gt;
  609. &lt;ul&gt;
  610. &lt;li&gt;Загрузить раскладку&lt;/li&gt;
  611. &lt;li&gt;Поместить фишки в позиции раскладки&lt;/li&gt;
  612. &lt;li&gt;Различить фишки&lt;/li&gt;
  613. &lt;li&gt;Реализовать выбор фишек&lt;/li&gt;
  614. &lt;li&gt;Реализовать сравнение фишек&lt;/li&gt;
  615. &lt;/ul&gt;
  616. &lt;p&gt;Как и любой другой план, этот выглядел вполне адекватно на первый взгляд. Тем не менее стоит начать разработку, как появляются новые детали. Этот план не был исключением. Ниже представлена пара проблем, вскрывшихся во время разработки.&lt;/p&gt;
  617. &lt;p&gt;&lt;strong&gt;Проблема №1: предоставить бинарные ресурсы на поддерживаемых платформах&lt;/strong&gt;&lt;/p&gt;
  618. &lt;p&gt;Маджонг будет доступен для десктопа, мобилок и веба. Каждая платформа имеет ограничения на доступ к внешним файлам:&lt;/p&gt;
  619. &lt;ul&gt;
  620. &lt;li&gt;Десктоп позволяет получить доступ почти к любому файлу&lt;/li&gt;
  621. &lt;li&gt;Мобилки имеют ограниченный доступ к файловой системе&lt;/li&gt;
  622. &lt;li&gt;Веб не имеет файловой системы&lt;/li&gt;
  623. &lt;/ul&gt;
  624. &lt;p&gt;Мы решили сделать единый способ доступа к ресурсам путём их встраивания в исполняемый файл. Это решение привело к рождению проектов &lt;strong&gt;mjin-resource&lt;/strong&gt; и &lt;strong&gt;mahjong-data&lt;/strong&gt;.&lt;/p&gt;
  625. &lt;p&gt;Проект &lt;a href="https://bitbucket.org/ogstudio/mjin-resource"&gt;mjin-resource&lt;/a&gt; служит для:&lt;/p&gt;
  626. &lt;ul&gt;
  627. &lt;li&gt;перевода бинарных файлов в заголовочные файлы C с помощью утилиты &lt;strong&gt;xxd&lt;/strong&gt;&lt;/li&gt;
  628. &lt;li&gt;создания проекта MJIN, состоящего из сгенерированных заголовочных файлов, который собирается в статическую библиотеку&lt;/li&gt;
  629. &lt;li&gt;предоставления интерфейса C++ для работы с ресурсами&lt;/li&gt;
  630. &lt;/ul&gt;
  631. &lt;p&gt;Проект &lt;a href="https://bitbucket.org/ogstudio-games/mahjong-data"&gt;mahjong-data&lt;/a&gt; является примером подобного проекта MJIN, ресурсы из которого использует проект &lt;a href="https://bitbucket.org/ogstudio-games/mahjong"&gt;mahjong&lt;/a&gt;.&lt;/p&gt;
  632. &lt;p&gt;&lt;strong&gt;Проблема №2: загрузка изображений PNG на поддерживаемых платформах&lt;/strong&gt;&lt;/p&gt;
  633. &lt;p&gt;Для загрузки PNG мы используем соответствующий плагин OpenSceneGraph. Мы собрали его без проблем для десктопа. Сборка же для веба (Emscripten) оказалась сложнее: Emscripten содержит собственную версию &lt;strong&gt;libpng&lt;/strong&gt;, которую сборочный скрипт OpenSceneGraph не видит. Нам пришлось обойти несколько проверок OpenSceneGraph, чтобы успешно собрать плагин для Emscripten.
  634. Сборка плагина под мобилки ещё ждёт нас впереди. Как только мы разберёмся с плагином PNG на всех поддерживаемых платформах, мы опубликуем информацию о его сборке в новом самоучителе для &lt;a href="https://github.com/ogstudio/openscenegraph-cross-platform-guide"&gt;кросс-платформенного руководства OpenSceneGraph&lt;/a&gt;. Нас уже &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/issues/4"&gt;попросили это сделать&lt;/a&gt;.&lt;/p&gt;
  635. &lt;p&gt;&lt;strong&gt;Разработка&lt;/strong&gt;&lt;/p&gt;
  636. &lt;p&gt;&lt;a href="http://opengamestudio.org/lets-go-ru.html"&gt;Как вы знаете&lt;/a&gt;, мы опубликовали кросс-платформенное руководство OpenSceneGraph для усиления сообщества OpenSceneGraph. Мы ценим обучение и любим делиться своими знаниями. Поэтому мы решили разрабатывать Маджонг небольшими воспроизводимыми частями, каждая из которых имеет уникальную внутреннюю версию. Эти версии доступны в &lt;a href="https://bitbucket.org/ogstudio-games/mahjong"&gt;хранилище проекта mahjong&lt;/a&gt;.&lt;/p&gt;
  637. &lt;p&gt;Мы также предоставляем &lt;a href="http://ogstudio.github.io/game-mahjong"&gt;историю версий, каждая из которых сопровождается сборкой под веб&lt;/a&gt;, для следующих целей:&lt;/p&gt;
  638. &lt;ul&gt;
  639. &lt;li&gt;обучение: показать ход разработки изнутри&lt;/li&gt;
  640. &lt;li&gt;доступность: предоставить старые версии для сравнения&lt;/li&gt;
  641. &lt;/ul&gt;
  642. &lt;p&gt;&lt;strong&gt;Текущее состояние игры Маджонг&lt;/strong&gt;&lt;/p&gt;
  643. &lt;p&gt;На момент написания этой статьи мы закончили реализацию выбора фишек. &lt;a href="https://ogstudio.github.io/game-mahjong/versions/010/mjin-player.html"&gt;Проверьте в своём браузере!&lt;/a&gt;&lt;/p&gt;
  644. &lt;p&gt;После реализации сравнения фишек мы опубликуем промежуточный результат для всех поддерживаемых платформ.&lt;/p&gt;
  645. &lt;p&gt;На этом мы заканчиваем описание начала воссоздания игры Маджонг.&lt;/p&gt;</content></entry><entry><title>The year of lessons</title><link href="http://opengamestudio.org/the-year-of-lessons.html" rel="alternate"></link><published>2017-12-31T22:00:00+03:00</published><updated>2017-12-31T22:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-12-31:/the-year-of-lessons.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2017-12-31-celebration.jpg"&gt;&lt;/p&gt;
  646. &lt;p&gt;So, the year 2017 is approaching its finale, the year's results have already
  647. been summed up. We're going to take a break from igniting the fireworks or
  648. preparation of the champagne so that we can designate our goal for the
  649. following year.&lt;/p&gt;
  650. &lt;p&gt;As it may be clear from other articles …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2017-12-31-celebration.jpg"&gt;&lt;/p&gt;
  651. &lt;p&gt;So, the year 2017 is approaching its finale, the year's results have already
  652. been summed up. We're going to take a break from igniting the fireworks or
  653. preparation of the champagne so that we can designate our goal for the
  654. following year.&lt;/p&gt;
  655. &lt;p&gt;As it may be clear from other articles on the site, half of our plans in 2017
  656. were destined to be completed at least approximately as we assumed. The other
  657. half was changed significantly.&lt;/p&gt;
  658. &lt;p&gt;During the year, people joined the team and left it. As a result, we meet the
  659. end of the year with exactly the same team as 365 days ago. It made us think.
  660. A lot. But We'll save the story for another time.&lt;/p&gt;
  661. &lt;p&gt;There will be exactly one goal for 2018. We will take all the results, and then
  662. we will make a new mahjong game. We're already know how to make a mahjong
  663. solitaire so we will begin with it. This time, it will be cross-platform.
  664. We will definitely try to cover Windows, Linux, macOs, Web, and Android.
  665. We can't promis anything about the iOS right now (although we'll see what
  666. we can do).&lt;/p&gt;
  667. &lt;p&gt;There is no point in writing more than We want to say. We learned a lot for
  668. this year, and we will try to apply all this knowledge to achieve more in the
  669. next one. We wish everyone a Happy New Year. Stay tuned.&lt;/p&gt;
  670. &lt;p&gt;The Opensource Game Studio Team.&lt;/p&gt;</content></entry><entry><title>Год новых уроков</title><link href="http://opengamestudio.org/the-year-of-lessons-ru.html" rel="alternate"></link><published>2017-12-31T22:00:00+03:00</published><updated>2017-12-31T22:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-12-31:/the-year-of-lessons-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2017-12-31-celebration.jpg"&gt;&lt;/p&gt;
  671. &lt;p&gt;Итак, 2017й год стремительно приближается к финалу, итоги года уже подведены,
  672. так что в свободное от расчехления фейерверков и подготовки систем залпового
  673. огня шампанским время мы обозначим свою цель в следующем году.&lt;/p&gt;
  674. &lt;p&gt;Как, наверное, понятно из других статей на сайте, примерно половине наших
  675. планов в 2017 году было суждено осуществиться …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2017-12-31-celebration.jpg"&gt;&lt;/p&gt;
  676. &lt;p&gt;Итак, 2017й год стремительно приближается к финалу, итоги года уже подведены,
  677. так что в свободное от расчехления фейерверков и подготовки систем залпового
  678. огня шампанским время мы обозначим свою цель в следующем году.&lt;/p&gt;
  679. &lt;p&gt;Как, наверное, понятно из других статей на сайте, примерно половине наших
  680. планов в 2017 году было суждено осуществиться хотя бы приблизительно так
  681. как мы предполагали, остальные поменялись существенно.&lt;/p&gt;
  682. &lt;p&gt;В течение года люди приходили в команду, уходили из нее, в итоге конец года
  683. мы встречаем с тем же составом что и 365 дней назад. Это заставило нас
  684. задуматься, но о выводах как-нибудь в другой раз.&lt;/p&gt;
  685. &lt;p&gt;Цель на 2018й год у нас будет ровно одна. Мы возьмем все результаты своих
  686. технологических поисков, и снова вернемся к маджонгу. Первым будет то,
  687. что мы уже умеем делать и делали - пасьянс. На этот раз, он будет
  688. кроссплатформенным. Точно постараемся охватить Windows, Linux, macOs, Web
  689. и Android. На счет iOS пока ничего обещать не будем (хотя и зарекаться - тоже).&lt;/p&gt;
  690. &lt;p&gt;Наверное нет смысла писать больше чем хочется сказать. Мы многому научились за
  691. этот год, и в следующем постараемся все это применить. Так что желаем всем
  692. счастливого Нового Года и оставайтесь с нами.&lt;/p&gt;
  693. &lt;p&gt;Команда Opensource Game Studio.&lt;/p&gt;</content></entry><entry><title>2017 summary</title><link href="http://opengamestudio.org/2017-summary.html" rel="alternate"></link><published>2017-11-22T00:00:00+03:00</published><updated>2017-11-22T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-11-22:/2017-summary.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2017-11-22-2017-summary.png"&gt;&lt;/p&gt;
  694. &lt;p&gt;It's time to step back to see our accomplishments in 2017 and how they connect to the overall goal of Opensource Game Studio project.&lt;/p&gt;
  695. &lt;p&gt;&lt;strong&gt;Brief history&lt;/strong&gt;&lt;/p&gt;
  696. &lt;p&gt;Opensource Game Studio project is 12 years old now.&lt;/p&gt;
  697. &lt;p&gt;&lt;strong&gt;2005.&lt;/strong&gt; We started the project with a &lt;a href="https://www.linuxquestions.org/questions/general-10/the-creation-of-the-best-rpg-355858/"&gt;fanatic call&lt;/a&gt; to create the best game ever …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2017-11-22-2017-summary.png"&gt;&lt;/p&gt;
  698. &lt;p&gt;It's time to step back to see our accomplishments in 2017 and how they connect to the overall goal of Opensource Game Studio project.&lt;/p&gt;
  699. &lt;p&gt;&lt;strong&gt;Brief history&lt;/strong&gt;&lt;/p&gt;
  700. &lt;p&gt;Opensource Game Studio project is 12 years old now.&lt;/p&gt;
  701. &lt;p&gt;&lt;strong&gt;2005.&lt;/strong&gt; We started the project with a &lt;a href="https://www.linuxquestions.org/questions/general-10/the-creation-of-the-best-rpg-355858/"&gt;fanatic call&lt;/a&gt; to create the best game ever. Probably right after finishing Half-Life 2 or Morrowind. 99.99% of those who wanted to participate weathered during a couple of years leaving only the two of us: Michael (coding) and Ivan (the rest).
  702. The project was in a constant turmoil because we had no clear purpose and discipline. Thus, we only got a handful of demonstrations during that period.&lt;/p&gt;
  703. &lt;p&gt;&lt;strong&gt;2010.&lt;/strong&gt; The first year for us to admit we failed big time. After accepting the failure, we have set Mahjong game as our initial target. We also realized that if we want the game out, we must work every day. We didn't get anywhere by working on weekends because they often collided with family time.&lt;/p&gt;
  704. &lt;p&gt;&lt;strong&gt;2012, 2013.&lt;/strong&gt; We released Mahjong 1.0 and Mahjong 1.1 correspondingly. We created a complete, polished game in 3-4 years after failing to provide anything of value during previous 5 years. To this date, Mahjong is the best and only game we released so far. We're still proud of it because it still feels great.&lt;/p&gt;
  705. &lt;p&gt;&lt;strong&gt;2015.&lt;/strong&gt; We showcased the first version of our game toolset. After releasing Mahjong, we decided to spend time on building toolset that would allow us to develop games faster.&lt;/p&gt;
  706. &lt;p&gt;&lt;strong&gt;2016.&lt;/strong&gt; We recreated Mahjong gameplay with our game toolset. However, we quickly realized that desktop only game toolset is a dead end. It led us to research mobile platforms.&lt;/p&gt;
  707. &lt;p&gt;&lt;strong&gt;Last year&lt;/strong&gt;&lt;/p&gt;
  708. &lt;p&gt;&lt;strong&gt;2016, October.&lt;/strong&gt; We started mobile platforms' research by making simple straightforward OpenSceneGraph application run under Android.&lt;/p&gt;
  709. &lt;p&gt;&lt;strong&gt;2017, January.&lt;/strong&gt; We got the Android version working and started iOS and Web research.&lt;/p&gt;
  710. &lt;p&gt;&lt;strong&gt;2017, February.&lt;/strong&gt; We made the sample application work everywhere: desktop, mobile, web.&lt;/p&gt;
  711. &lt;p&gt;Researching mobile and web took us about five months. We spent that much time because there was no documentation on how to run OpenSceneGraph across platforms. We had to step in and create said documentation.&lt;/p&gt;
  712. &lt;p&gt;&lt;strong&gt;2017, July.&lt;/strong&gt; We published &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide"&gt;OpenSceneGraph cross-platform guide&lt;/a&gt;, which describes how to create a simple OpenSceneGraph application and make it run on desktop, mobile, and web. To this date, this is our most popular GitHub repository.&lt;/p&gt;
  713. &lt;p&gt;&lt;strong&gt;2017, November.&lt;/strong&gt; We published simple &lt;a href="https://ogstudio.github.io/game-memory-colors/tutorial-5.3/mjin-player.html"&gt;Memory: Colors game&lt;/a&gt; and the &lt;a href="https://bitbucket.org/ogstudio-games/memory-colors"&gt;guide&lt;/a&gt; on how to create the game from scratch. The game is powered by MJIN, our new cross-platform game toolset that we started this summer.&lt;/p&gt;
  714. &lt;p&gt;Currently MJIN toolset is in its infancy. MJIN needs a real game to flourish. That's why we are already working on cross-platform Mahjong. We'll do our best to make Mahjong faster this time.&lt;/p&gt;</content></entry><entry><title>Итоги 2017-го</title><link href="http://opengamestudio.org/2017-summary-ru.html" rel="alternate"></link><published>2017-11-22T00:00:00+03:00</published><updated>2017-11-22T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-11-22:/2017-summary-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2017-11-22-2017-summary.png"&gt;&lt;/p&gt;
  715. &lt;p&gt;Настало время сделать ревизию наших достижений в 2017 году и проверить, насколько они следуют основной цели проекта Opensource Game Studio.&lt;/p&gt;
  716. &lt;p&gt;&lt;strong&gt;Краткая история&lt;/strong&gt;&lt;/p&gt;
  717. &lt;p&gt;Проекту Opensource Game Studio уже 12 лет.&lt;/p&gt;
  718. &lt;p&gt;&lt;strong&gt;2005.&lt;/strong&gt; Мы начали проект с &lt;a href="https://unixforum.org/index.php?showtopic=9989"&gt;фанатичного призыва&lt;/a&gt; к созданию самой лучшей игры. Видимо, сразу же после прохождения Half-Life 2 или Morrowind …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Screenshot" src="http://opengamestudio.org/2017-11-22-2017-summary.png"&gt;&lt;/p&gt;
  719. &lt;p&gt;Настало время сделать ревизию наших достижений в 2017 году и проверить, насколько они следуют основной цели проекта Opensource Game Studio.&lt;/p&gt;
  720. &lt;p&gt;&lt;strong&gt;Краткая история&lt;/strong&gt;&lt;/p&gt;
  721. &lt;p&gt;Проекту Opensource Game Studio уже 12 лет.&lt;/p&gt;
  722. &lt;p&gt;&lt;strong&gt;2005.&lt;/strong&gt; Мы начали проект с &lt;a href="https://unixforum.org/index.php?showtopic=9989"&gt;фанатичного призыва&lt;/a&gt; к созданию самой лучшей игры. Видимо, сразу же после прохождения Half-Life 2 или Morrowind. 99.99% тех, кто хотел участвовать, отвалились в течение первых двух лет. Остались лишь два человека: Михаил (программирование) и Иван (всё остальное). Проект находился в стадии постоянного беспорядка, т.к. у нас не было ни чёткой цели, ни дисциплины. Неудивительно, что за этот период мы можем похвастаться лишь небольшим набором сумбурных демонстраций.&lt;/p&gt;
  723. &lt;p&gt;&lt;strong&gt;2010.&lt;/strong&gt; Первый год признания нашего поражения. После принятия поражения мы поставили себе целью создать игру Маджонг. Мы также осознали, что для выпуска игры нам придётся работать каждый день. Работа по выходным не приносила результатов, т.к. она часто сталкивалась с необходимостью уделять время семье.&lt;/p&gt;
  724. &lt;p&gt;&lt;strong&gt;2012, 2013.&lt;/strong&gt; Мы выпустили версии 1.0 и 1.1 Маджонга соответственно. Мы создали полноценную отполированную игру за 3-4 года, тогда как до этого 5 лет не могли сделать ничего вразумительного. Маджонг до сих пор остаётся нашей лучшей и единственной выпущенной игрой. Мы всё ещё гордимся им, и нам всё ещё нравится в него играть.&lt;/p&gt;
  725. &lt;p&gt;&lt;strong&gt;2015.&lt;/strong&gt; Мы продемонстрировали первую версию нашего средства разработки. Мы приступили к его созданию сразу после выпуска Маджонга, т.к. решили сделать инструмент для экономии времени разработки следующих игр.&lt;/p&gt;
  726. &lt;p&gt;&lt;strong&gt;2016.&lt;/strong&gt; Мы воссоздали игровую механику Маджонга с помощью нашего инструмента. Тем не менее, к тому моменту мы осознали, что разработка лишь под настольные компьютеры нежизнеспособна. Это понимание подтолкнуло нас к изучению мобильных платформ.&lt;/p&gt;
  727. &lt;p&gt;&lt;strong&gt;Последний год&lt;/strong&gt;&lt;/p&gt;
  728. &lt;p&gt;&lt;strong&gt;2016, октябрь.&lt;/strong&gt; Мы начали изучение мобильных платформ с создания простейшего приложения OpenSceneGraph, которое сможет работать на Android.&lt;/p&gt;
  729. &lt;p&gt;&lt;strong&gt;2017, январь.&lt;/strong&gt; Мы получили версию Android и начали изучение iOS с Вебом.&lt;/p&gt;
  730. &lt;p&gt;&lt;strong&gt;2017, февраль.&lt;/strong&gt; Мы запустили простейшее приложение везде: настольный компьютер, мобильные платформы, веб.&lt;/p&gt;
  731. &lt;p&gt;Изучение мобильных платформ и веба заняло у нас около пяти месяцев. Нам пришлось потратить это время по причине отсутствия какой-либо внятной документации по работе с OpenSceneGraph на разных платформах. После таких громадных трат времени мы решили сэкономить это время другим разработчикам и занялись созданием указанной документации.&lt;/p&gt;
  732. &lt;p&gt;&lt;strong&gt;2017, июль.&lt;/strong&gt; Мы опубликовали &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide"&gt;инструкцию по работе с OpenSceneGraph на разных платформах&lt;/a&gt;, которая рассказывает в деталях о создании простейшего приложения OpenSceneGraph и запуске его на настольных компьютерах, мобильных платформах и вебе. Эта инструкция является нашим самым популярным проектом на GitHub.&lt;/p&gt;
  733. &lt;p&gt;&lt;strong&gt;2017, ноябрь.&lt;/strong&gt; Мы выпустили простую &lt;a href="https://ogstudio.github.io/game-memory-colors/tutorial-5.3/mjin-player.html"&gt;игру "Память: Цвета"&lt;/a&gt; и &lt;a href="https://bitbucket.org/ogstudio-games/memory-colors"&gt;инструкцию&lt;/a&gt; по созданию этой игры с нуля. Игра создана с помощью MJIN, нашего нового инструмента для разработки игр, этому инструменту всего лишь несколько месяцев.&lt;/p&gt;
  734. &lt;p&gt;На текущий момент MJIN лишь начинает развитие. Этому инструменту нужна настоящая игра, чтобы расцвести. Поэтому мы уже работаем над Маджонгом, который будет радовать вас и на настольных компьютерах, и на мобильных платформах, и в вебе. На этот раз мы постараемся сделать Маджонг быстрее. &lt;/p&gt;</content></entry><entry><title>Back to the Static</title><link href="http://opengamestudio.org/back-to-the-static.html" rel="alternate"></link><published>2017-10-16T00:00:00+03:00</published><updated>2017-10-16T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-10-16:/back-to-the-static.html</id><summary type="html">&lt;p&gt;&lt;img alt="Back to the Static" src="http://opengamestudio.org/2017-10-16-back-to-the-static.png"&gt;&lt;/p&gt;
  735. &lt;p&gt;We have been using Wordpress as our website engine for more than seven years. And now it's time to move forward. Or backward.
  736. For some time we've been tracking the development of the new breed of website engines - static site generators.
  737. It seems that this is the technology capable of …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Back to the Static" src="http://opengamestudio.org/2017-10-16-back-to-the-static.png"&gt;&lt;/p&gt;
  738. &lt;p&gt;We have been using Wordpress as our website engine for more than seven years. And now it's time to move forward. Or backward.
  739. For some time we've been tracking the development of the new breed of website engines - static site generators.
  740. It seems that this is the technology capable of changing past into future.&lt;/p&gt;
  741. &lt;p&gt;A static website is more straightforward, quicker and more secure. And with the help of generators, it is also as easy to manage, as the dynamic website.
  742. So, we are starting our site anew with the help of the &lt;a href="https://blog.getpelican.com/"&gt;Pelican&lt;/a&gt;.
  743. Right now it doesn't have all the content from our old site, but we'll add most of it soon.&lt;/p&gt;</content></entry><entry><title>Назад в Статику</title><link href="http://opengamestudio.org/back-to-the-static-ru.html" rel="alternate"></link><published>2017-10-16T00:00:00+03:00</published><updated>2017-10-16T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-10-16:/back-to-the-static-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Назад в Статику" src="http://opengamestudio.org/2017-10-16-back-to-the-static.png"&gt;&lt;/p&gt;
  744. &lt;p&gt;Мы используем Wordpress в качестве движка нашего сайта уже более семи лет. И теперь пришло время двигаться вперед. Или назад.
  745. Некоторое время мы следили за разработкой нового поколения движков - генераторов статических сайтов.
  746. Похоже, что это технология, способная превратить прошлое в будущее.&lt;/p&gt;
  747. &lt;p&gt;Статический веб-сайт проще, быстрее и безопаснее. И с помощью …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Назад в Статику" src="http://opengamestudio.org/2017-10-16-back-to-the-static.png"&gt;&lt;/p&gt;
  748. &lt;p&gt;Мы используем Wordpress в качестве движка нашего сайта уже более семи лет. И теперь пришло время двигаться вперед. Или назад.
  749. Некоторое время мы следили за разработкой нового поколения движков - генераторов статических сайтов.
  750. Похоже, что это технология, способная превратить прошлое в будущее.&lt;/p&gt;
  751. &lt;p&gt;Статический веб-сайт проще, быстрее и безопаснее. И с помощью генераторов им настолько же легко управлять, как и динамическим веб-сайтом.
  752. Так что мы начинаем наш сайт заново с помощью [Pelican] (https://blog.getpelican.com/).
  753. Сейчас здесь нет всего контента с нашего старого сайта, но мы добавим его в ближайшее время.&lt;/p&gt;</content></entry><entry><title>The birth of MJIN world</title><link href="http://opengamestudio.org/mjin-world-birth.html" rel="alternate"></link><published>2017-09-10T00:00:00+03:00</published><updated>2017-09-10T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-09-10:/mjin-world-birth.html</id><summary type="html">&lt;p&gt;&lt;img alt="The birth of MJIN world" src="http://opengamestudio.org/2017-09-mjin-world-birth.png"&gt;&lt;/p&gt;
  754. &lt;p&gt;This article describes the birth of MJIN world in August 2017.&lt;/p&gt;
  755. &lt;p&gt;&lt;strong&gt;mjin-player&lt;/strong&gt;&lt;/p&gt;
  756. &lt;p&gt;As you know, &lt;a href="http://opengamestudio.org/scripting-research.html"&gt;we spent July to research scripting&lt;/a&gt;. We found a solution that satisfies the following criteria. Scripts should:&lt;/p&gt;
  757. &lt;ol&gt;
  758. &lt;li&gt;run unchanged on all supported platforms&lt;/li&gt;
  759. &lt;li&gt;allow extending C++ code&lt;/li&gt;
  760. &lt;/ol&gt;
  761. &lt;p&gt;We have verified the second criterion by writing …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="The birth of MJIN world" src="http://opengamestudio.org/2017-09-mjin-world-birth.png"&gt;&lt;/p&gt;
  762. &lt;p&gt;This article describes the birth of MJIN world in August 2017.&lt;/p&gt;
  763. &lt;p&gt;&lt;strong&gt;mjin-player&lt;/strong&gt;&lt;/p&gt;
  764. &lt;p&gt;As you know, &lt;a href="http://opengamestudio.org/scripting-research.html"&gt;we spent July to research scripting&lt;/a&gt;. We found a solution that satisfies the following criteria. Scripts should:&lt;/p&gt;
  765. &lt;ol&gt;
  766. &lt;li&gt;run unchanged on all supported platforms&lt;/li&gt;
  767. &lt;li&gt;allow extending C++ code&lt;/li&gt;
  768. &lt;/ol&gt;
  769. &lt;p&gt;We have verified the second criterion by writing a sample application. The first criterion was taken for granted because it SHOULD be true.&lt;/p&gt;
  770. &lt;p&gt;At the time, we saw two ways to verify the first criterion:&lt;/p&gt;
  771. &lt;ol&gt;
  772. &lt;li&gt;create one sample application for each platform to verify scripting only&lt;/li&gt;
  773. &lt;li&gt;create a single cross-platform application, which can run any code&lt;/li&gt;
  774. &lt;/ol&gt;
  775. &lt;p&gt;We chose the second approach because it is more beneficial in the long run. As you might have guessed, &lt;a href="https://bitbucket.org/ogstudio/mjin-player"&gt;mjin-player&lt;/a&gt; is that application.&lt;/p&gt;
  776. &lt;p&gt;mjin-player serves as a base for the rest of MJIN projects to make them run on all supported platforms. However, there's no magic trick to hide the projects from the platform, and there was no such intention. Instead, mjin-player provides a consistent set of rules how other MJIN projects should be structured to be able to run on all supported platforms.&lt;/p&gt;
  777. &lt;p&gt;&lt;strong&gt;mjin-application&lt;/strong&gt;&lt;/p&gt;
  778. &lt;p&gt;This set of rules for MJIN projects is packaged into &lt;a href="https://bitbucket.org/ogstudio/mjin-application"&gt;mjin-application&lt;/a&gt;. mjin-application is a library that provides basic functionality every MJIN project would need and nothing more. For instance, mjin-application does not and will not contain scripting or any other specific functionality.&lt;/p&gt;
  779. &lt;p&gt;&lt;strong&gt;MJIN world&lt;/strong&gt;&lt;/p&gt;
  780. &lt;p&gt;So what is &lt;a href="https://bitbucket.org/ogstudio/mjin"&gt;MJIN world&lt;/a&gt;? It's a set of projects that constitute our game development tools. mjin-player and mjin-application are the first bricks of the newly born MJIN world. A lot more to come. Stay tuned for the brighter MJIN future.&lt;/p&gt;
  781. &lt;p&gt;That's it for describing the birth of MJIN world in August 2017.&lt;/p&gt;</content></entry><entry><title>Рождение вселенной MJIN</title><link href="http://opengamestudio.org/mjin-world-birth-ru.html" rel="alternate"></link><published>2017-09-10T00:00:00+03:00</published><updated>2017-09-10T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-09-10:/mjin-world-birth-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Рождение вселенной MJIN" src="http://opengamestudio.org/2017-09-mjin-world-birth.png"&gt;&lt;/p&gt;
  782. &lt;p&gt;Эта статья описывает рождение вселенной MJIN в августе 2017.&lt;/p&gt;
  783. &lt;p&gt;&lt;strong&gt;mjin-player&lt;/strong&gt;&lt;/p&gt;
  784. &lt;p&gt;Как вы знаете, &lt;a href="http://opengamestudio.org/scripting-research-ru.html"&gt;в июле мы изучали скриптование&lt;/a&gt;. Мы нашли решение, которое удовлетворяет следующим критериям. Скрипты должны:&lt;/p&gt;
  785. &lt;ol&gt;
  786. &lt;li&gt;исполняться в исходном виде без изменений на всех поддерживаемых платформах&lt;/li&gt;
  787. &lt;li&gt;позволять расширять код C++&lt;/li&gt;
  788. &lt;/ol&gt;
  789. &lt;p&gt;Мы проверили второй критерий в рамках тестового приложения. В …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Рождение вселенной MJIN" src="http://opengamestudio.org/2017-09-mjin-world-birth.png"&gt;&lt;/p&gt;
  790. &lt;p&gt;Эта статья описывает рождение вселенной MJIN в августе 2017.&lt;/p&gt;
  791. &lt;p&gt;&lt;strong&gt;mjin-player&lt;/strong&gt;&lt;/p&gt;
  792. &lt;p&gt;Как вы знаете, &lt;a href="http://opengamestudio.org/scripting-research-ru.html"&gt;в июле мы изучали скриптование&lt;/a&gt;. Мы нашли решение, которое удовлетворяет следующим критериям. Скрипты должны:&lt;/p&gt;
  793. &lt;ol&gt;
  794. &lt;li&gt;исполняться в исходном виде без изменений на всех поддерживаемых платформах&lt;/li&gt;
  795. &lt;li&gt;позволять расширять код C++&lt;/li&gt;
  796. &lt;/ol&gt;
  797. &lt;p&gt;Мы проверили второй критерий в рамках тестового приложения. В первый критерий мы просто поверили, т.к. он ДОЛЖЕН быть верен.&lt;/p&gt;
  798. &lt;p&gt;В тот момент мы видели два варианта проверки первого критерия:&lt;/p&gt;
  799. &lt;ol&gt;
  800. &lt;li&gt;создать по одному тестовому приложению под каждую платформу для проверки лишь этого критерия&lt;/li&gt;
  801. &lt;li&gt;создать одно кросс-платформенное приложение, которому можно скормить практически любой код&lt;/li&gt;
  802. &lt;/ol&gt;
  803. &lt;p&gt;Мы выбрали второй подход, т.к. он выгоднее в долгосрочной перспективе. Как вы уже догадались, &lt;a href="https://bitbucket.org/ogstudio/mjin-player"&gt;mjin-player&lt;/a&gt; является тем самым кросс-платформенным приложением.&lt;/p&gt;
  804. &lt;p&gt;mjin-player служит базой для остальных проектов MJIN, которая позволяет этим проектам работать на всех поддерживаемых платформах. Тем не менее, в mjin-player нет никакой магии, проекты никак не скрыты от деталей платформ, да и не было такой задачи. Вместо скрытия деталей платформы mjin-player предоставляет набор правил, которым должны удовлетворять проекты MJIN для работы на всех поддерживаемых платформах.&lt;/p&gt;
  805. &lt;p&gt;&lt;strong&gt;mjin-application&lt;/strong&gt;&lt;/p&gt;
  806. &lt;p&gt;Этот набор правил представлен в виде &lt;a href="https://bitbucket.org/ogstudio/mjin-application"&gt;mjin-application&lt;/a&gt;. mjin-application является библиотекой с базовым функционалом, необходимым для каждого проекта MJIN, но не более. Например, mjin-application не содержит и никогда не будет содержать скриптования или подобного специфического функционала.&lt;/p&gt;
  807. &lt;p&gt;&lt;strong&gt;Вселенная MJIN&lt;/strong&gt;&lt;/p&gt;
  808. &lt;p&gt;Так что же такое &lt;a href="https://bitbucket.org/ogstudio/mjin"&gt;вселенная MJIN&lt;/a&gt;? Это множество проектов, которые являются нашими средствами для разработки игр. mjin-player и mjin-application - первые кирпичики недавно появившейся вселенной MJIN. А будет их намного больше. Оставайтесь на связи, нас ждёт светлое будущее с MJIN.&lt;/p&gt;
  809. &lt;p&gt;На этом мы заканчиваем описание рождения вселенной MJIN в августе 2017.&lt;/p&gt;</content></entry><entry><title>Scripting research</title><link href="http://opengamestudio.org/scripting-research.html" rel="alternate"></link><published>2017-08-16T00:00:00+03:00</published><updated>2017-08-16T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-08-16:/scripting-research.html</id><summary type="html">&lt;p&gt;&lt;img alt="Scripting research" src="http://opengamestudio.org/2017-08-scripting-research.png"&gt;&lt;/p&gt;
  810. &lt;p&gt;This article describes scripting research in July 2017.&lt;/p&gt;
  811. &lt;p&gt;&lt;strong&gt;Our first goal of using a scripting language was to have a platform-independent code that runs unchanged on every supported platform.&lt;/strong&gt;&lt;/p&gt;
  812. &lt;p&gt;OGS Editor 0.10 supports Python for such a code thanks to &lt;a href="http://swig.org/"&gt;SWIG&lt;/a&gt;. SWIG provides a way to wrap almost any …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Scripting research" src="http://opengamestudio.org/2017-08-scripting-research.png"&gt;&lt;/p&gt;
  813. &lt;p&gt;This article describes scripting research in July 2017.&lt;/p&gt;
  814. &lt;p&gt;&lt;strong&gt;Our first goal of using a scripting language was to have a platform-independent code that runs unchanged on every supported platform.&lt;/strong&gt;&lt;/p&gt;
  815. &lt;p&gt;OGS Editor 0.10 supports Python for such a code thanks to &lt;a href="http://swig.org/"&gt;SWIG&lt;/a&gt;. SWIG provides a way to wrap almost any C/C++ code and use it in dozens of languages like Python, Ruby, Lua, Java, C#, etc.. SWIG really helped us taste the beauty of platform-independent code. However, SWIG only works one way: from C/C++ to a target language. This means the main application must be in the target language, and C/C++ code can only be used as a library.&lt;/p&gt;
  816. &lt;p&gt;Having the main application in Python works fine for the desktop, but not so great for mobile and web, where C and C++ are the only natively supported cross-platform languages. There are projects like &lt;a href="https://kivy.org"&gt;Kivy&lt;/a&gt;, which allow you to develop cross-platform applications in Python, but they are not supported natively. This means it's a lot of headaches when Android and iOS APIs change.&lt;/p&gt;
  817. &lt;p&gt;Having the main application in C/C++ and the need to support scripting means that a scripting language should be interpreted by the application. This is what SWIG, Kivy, and similar projects are not meant to fulfill.&lt;/p&gt;
  818. &lt;p&gt;&lt;strong&gt;Our secondary goal for using a scripting language was to allow to extend C++ code.&lt;/strong&gt;&lt;/p&gt;
  819. &lt;p&gt;OGS Editor 0.10 has some modules written in C++, and some in Python. The modules are equal from the perspective of the main application; it doesn't care what language the module is written in.&lt;/p&gt;
  820. &lt;p&gt;To achieve such flexibility, we introduced a so-called Environment. Each module would register the keys it responds to, and Environment would deliver corresponding messages.
  821. Technically such behaviour is achieved by inheriting a base class and overriding its methods in both C++ and a scripting language.&lt;/p&gt;
  822. &lt;p&gt;&lt;strong&gt;First, we evaluated Python for the role of cross-platform scripting language.&lt;/strong&gt;&lt;/p&gt;
  823. &lt;p&gt;Since we already used Python, we started to research the possibility to run Python code on every supported platform. The result was disappointing because CPython (the default Python implementation used on the desktop) does not mention mobile and web platforms. We only found some years old forks of CPython that were claimed to work either on Android or iOS. Such a disarray was not suitable for us.
  824. We also had a look at &lt;a href="http://pypy.org"&gt;PyPy&lt;/a&gt;, another Python implementation. It also did not mention support for mobile and web platforms.&lt;/p&gt;
  825. &lt;p&gt;This was a clear indication that Python community doesn't care for mobile and web platforms. Or that nobody had time to provide the information about building Python on such platforms. Either way, it was not acceptable for us.&lt;/p&gt;
  826. &lt;p&gt;&lt;strong&gt;Second, we evaluated &lt;a href="http://wren.io"&gt;Wren&lt;/a&gt; for the role of cross-platform scripting language.&lt;/strong&gt;&lt;/p&gt;
  827. &lt;p&gt;Wren was the first scripting language we stumbled upon in the long list of non-mainstream scripting languages.&lt;/p&gt;
  828. &lt;p&gt;Wren claimed to be small and easy to learn. Wren also claimed to be intended for embedding in applications. Ironically, the author &lt;a href="http://wren.io/embedding-api.html"&gt;had no time to document how to do the embedding in the first place&lt;/a&gt;. When &lt;a href="https://github.com/munificent/wren/issues/465"&gt;we asked for the time estimates of publishing&lt;/a&gt; the critical part of the documentation, &lt;a href="https://github.com/munificent/wren/issues/402"&gt;we just got a reference to another issue&lt;/a&gt; where the other guy was asking the same question half a year ago!&lt;/p&gt;
  829. &lt;p&gt;That's when we ended our relationship with Wren.&lt;/p&gt;
  830. &lt;p&gt;&lt;strong&gt;Third, we evaluated &lt;a href="http://chaiscript.com"&gt;Chai&lt;/a&gt; for the role of cross-platform scripting language.&lt;/strong&gt;&lt;/p&gt;
  831. &lt;p&gt;Chai was in the long list of non-mainstream scripting languages, too. Chai was promising because it claimed to be specifically tailored for embedding in a C++ application.
  832. We successfully managed to call a C++ function from inside Chai but failed to call a member function. &lt;a href="http://discourse.chaiscript.com/t/cannot-call-a-function-that-accepts-a-string-and-a-vector/334"&gt;We asked for help&lt;/a&gt;, but nobody replied.&lt;/p&gt;
  833. &lt;p&gt;We had to end our relationship with Chai.&lt;/p&gt;
  834. &lt;p&gt;&lt;strong&gt;Fourth, we evaluated Lua for the role of cross-platform scripting language.&lt;/strong&gt;&lt;/p&gt;
  835. &lt;p&gt;Lua is the mainstream language for embedding. So we decided to try the obvious choice. Documentation looked promising, too. However, by the end of reading the &lt;a href="https://www.lua.org/pil/24.html"&gt;C API&lt;/a&gt; chapter we had no clue how to inherit a class inside Lua.&lt;/p&gt;
  836. &lt;p&gt;This led us to search for libraries that wrap Lua C API syntax into something more meaningful for C++. That's how we found &lt;a href="http://sol2.rtfd.io"&gt;Sol2&lt;/a&gt;. Just as before, the first attempt to call a C++ member function from Lua failed. But unlike before, we asked for help and &lt;a href="https://github.com/ThePhD/sol2/issues/465"&gt;got the help&lt;/a&gt;! This was a refreshing surprise for us.
  837. Next, we tried to inherit a class in Lua and override the class methods. We failed, but &lt;a href="https://github.com/ThePhD/sol2/issues/468"&gt;the author helped us out again&lt;/a&gt;. In the end, we succeeded in inheriting a class and overriding its behaviour.&lt;/p&gt;
  838. &lt;p&gt;That's when we understood it's a start for a long and mutual relationship with Sol2/Lua.&lt;/p&gt;
  839. &lt;p&gt;&lt;strong&gt;This search for a scripting language taught us one important lesson: people matter, not technologies.&lt;/strong&gt;&lt;/p&gt;
  840. &lt;p&gt;There are lots of scripting languages that look shiny on the outside but are dead. Why? Because some authors don't have time for users. In return, users don't have time for the authors' projects.&lt;/p&gt;
  841. &lt;p&gt;That's it for describing scripting research in July 2017.&lt;/p&gt;</content></entry><entry><title>Изучение скриптования</title><link href="http://opengamestudio.org/scripting-research-ru.html" rel="alternate"></link><published>2017-08-16T00:00:00+03:00</published><updated>2017-08-16T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-08-16:/scripting-research-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Изучение скриптования" src="http://opengamestudio.org/2017-08-scripting-research.png"&gt;&lt;/p&gt;
  842. &lt;p&gt;Эта статья описывает изучение скриптования в июле 2017.&lt;/p&gt;
  843. &lt;p&gt;&lt;strong&gt;Наша основная цель использования скриптового языка - это наличие платформо-независимого кода, выполняемого без изменений на каждой поддерживаемой платформе.&lt;/strong&gt;&lt;/p&gt;
  844. &lt;p&gt;Редактор 0.10 использует Python в качестве подобного кода с помощью &lt;a href="http://swig.org/"&gt;SWIG&lt;/a&gt;. SWIG позволяет использовать практически любой код C/C++ из языков вроде Python, Ruby …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Изучение скриптования" src="http://opengamestudio.org/2017-08-scripting-research.png"&gt;&lt;/p&gt;
  845. &lt;p&gt;Эта статья описывает изучение скриптования в июле 2017.&lt;/p&gt;
  846. &lt;p&gt;&lt;strong&gt;Наша основная цель использования скриптового языка - это наличие платформо-независимого кода, выполняемого без изменений на каждой поддерживаемой платформе.&lt;/strong&gt;&lt;/p&gt;
  847. &lt;p&gt;Редактор 0.10 использует Python в качестве подобного кода с помощью &lt;a href="http://swig.org/"&gt;SWIG&lt;/a&gt;. SWIG позволяет использовать практически любой код C/C++ из языков вроде Python, Ruby, Lua, Java, C# и т.д.. SWIG помог нам впервые оценить прелесть платформо-независимого кода. К сожалению, SWIG работает лишь в одном направлении: из C/C++ в язык назначения. Это приводит к тому, что основное приложение должно быть написано на языке назначения, а код C/C++ может быть использован лишь в виде библиотеки.&lt;/p&gt;
  848. &lt;p&gt;Основное приложение на языке Python вполне подходит для десктопа, но не для мобилок и веба, где языки C и C++ являются единственными языками, поддерживаемыми нативно на каждой платформе. Конечно, существуют проекты вроде &lt;a href="https://kivy.org"&gt;Kivy&lt;/a&gt;, которые позволяет разрабатывать кросс-платформенные приложения на Python, но они не поддерживаются нативно. Отсутствие нативной поддержки выливается в огромную головную боль при изменении API у Android и iOS.&lt;/p&gt;
  849. &lt;p&gt;Необходимость в приложении на C/C++ и поддержке скриптов приводит к обязательному интерпретированию скриптового языка самим приложением. Это как раз то, что SWIG, Kivy и подобные проекты не позволяют сделать.&lt;/p&gt;
  850. &lt;p&gt;&lt;strong&gt;Наша вторичная цель использования скриптового языка - это возможность расширения кода C++.&lt;/strong&gt;&lt;/p&gt;
  851. &lt;p&gt;Одни модули Редактора 0.10 написаны на C++, а другие на Python. С точки зрения основного приложения, все модули равны. Для приложения нет никакой разницы, на каком языке написан конкретный модуль.&lt;/p&gt;
  852. &lt;p&gt;Для достижения этой гибкости мы ввели так называемое Окружение (Environment). Каждый модуль регистрирует ключи (keys), на которые он отвечает, а Окружение доставляет соответствующие сообщения. Технически такое поведение можно достигнуть с помощью наследования базового класса и переопределения его методов как в C++, так и в скриптовом языке.&lt;/p&gt;
  853. &lt;p&gt;&lt;strong&gt;Python был первым языком, который мы рассмотрели в качестве платформо-независимого скриптового языка.&lt;/strong&gt;&lt;/p&gt;
  854. &lt;p&gt;Т.к. мы уже использовали Python, то логично было начать изучение с него. Мы хотели проверить, можно ли запустить код Python на каждой поддерживаемой платформе. К сожалению, результаты были удручающими, т.к. документация CPython (реализация Python, используемая по умолчанию на десктопе) никак не упоминала ни мобилки, ни веб. Всё, что мы нашли, - это пара форков CPython лохматых годов, которые якобы работают либо на Android, либо на iOS. Такой раздрай нас не устроил.
  855. Мы также рассмотрели &lt;a href="http://pypy.org"&gt;PyPy&lt;/a&gt;, ещё одну реализацию Python, но она тоже не содержала информации о мобилках и вебе.&lt;/p&gt;
  856. &lt;p&gt;Это было чётким сигналом об отсутствии интереса к мобилками и вебу со стороны сообщества Python. Либо об отсутствии времени даже на то, чтобы описать использование Python на данных платформах. В любом случае, такое положение вещей нас не устроило.&lt;/p&gt;
  857. &lt;p&gt;&lt;strong&gt;&lt;a href="http://wren.io"&gt;Wren&lt;/a&gt; был вторым языком, который мы рассмотрели в качестве платформо-независимого скриптового языка.&lt;/strong&gt;&lt;/p&gt;
  858. &lt;p&gt;Wren был первым языком из длинного списка малоизвестных скриптовых языков.&lt;/p&gt;
  859. &lt;p&gt;Wren преподносился как небольшой и простой язык. Согласно документации, основная цель Wren - это быть встроенным в приложение. По иронии судьбы, у автора &lt;a href="http://wren.io/embedding-api.html"&gt;не было времени описать в документации встраивание Wren&lt;/a&gt; в приложение. Когда мы &lt;a href="https://github.com/munificent/wren/issues/465"&gt;спросили о сроках публикации&lt;/a&gt; этой критически важной части документации, мы &lt;a href="https://github.com/munificent/wren/issues/402"&gt;получили в ответ ссылку на тикет&lt;/a&gt;, в котором другой человек спрашивал тот же самый вопрос полгода назад!&lt;/p&gt;
  860. &lt;p&gt;На этом мы закончили отношения с Wren.&lt;/p&gt;
  861. &lt;p&gt;&lt;strong&gt;&lt;a href="http://chaiscript.com"&gt;Chai&lt;/a&gt; был третьим языком, который мы рассмотрели в качестве платформо-независимого скриптового языка.&lt;/strong&gt;&lt;/p&gt;
  862. &lt;p&gt;Chai был в том же длинном списке малоизвестных скриптовых языков. Он преподносился как язык, специально предназначенный для встраивания в приложения C++. Мы без проблем вызвали функцию C++ из Chai, но нам не удалось вызвать метод класса. &lt;a href="http://discourse.chaiscript.com/t/cannot-call-a-function-that-accepts-a-string-and-a-vector/334"&gt;Мы попросили о помощи&lt;/a&gt;, но ответом была лишь тишина.&lt;/p&gt;
  863. &lt;p&gt;Нам пришлось завершить отношения с Chai.&lt;/p&gt;
  864. &lt;p&gt;&lt;strong&gt;Lua был четвёртым языком, который мы рассмотрели в качестве платформо-независимого скриптового языка.&lt;/strong&gt;&lt;/p&gt;
  865. &lt;p&gt;Lua является популярным языком для встраивания. Мы решили попробовать очевидный вариант. Документация выглядела многообещающе, однако под конец чтения главы &lt;a href="https://www.lua.org/pil/24.html"&gt;C API&lt;/a&gt; у нас не было ни малейшего представления, как наследовать класс C++ в Lua.&lt;/p&gt;
  866. &lt;p&gt;Этот вопрос заставил нас найти библиотеку, которая смогла бы на него ответить: &lt;a href="http://sol2.rtfd.io"&gt;Sol2&lt;/a&gt;. Первая попытка вызвать функцию C++ из Lua провалилась. Правда, на этот раз наш вопрос был услышан, и &lt;a href="https://github.com/ThePhD/sol2/issues/465"&gt;мы получили ответ&lt;/a&gt;! Мы были сильно удивлены.
  867. Далее мы попытались наследовать класс C++ в Lua, чтобы переопределить методы класса. Нам это не удалось с первого раза, но автор Sol2 &lt;a href="https://github.com/ThePhD/sol2/issues/468"&gt;снова помог нам&lt;/a&gt;.&lt;/p&gt;
  868. &lt;p&gt;В тот момент мы поняли, что это начало долгого и взаимовыгодного сотрудничества с Sol2/Lua.&lt;/p&gt;
  869. &lt;p&gt;&lt;strong&gt;Поиск скриптового языка открыл для нас следующую истину: люди важнее технологий.&lt;/strong&gt;&lt;/p&gt;
  870. &lt;p&gt;Существует множество скриптовых языков, которые выглядят привлекательно на первый взгляд, но которые мертвы. Почему? Потому что у некоторых авторов нет времени на пользователей. В ответ пользователи предпочитают не тратить своё время на проекты подобных авторов.&lt;/p&gt;
  871. &lt;p&gt;На этом мы заканчиваем описание изучения скриптования в июле 2017.&lt;/p&gt;</content></entry><entry><title>OpenSceneGraph cross-platform guide</title><link href="http://opengamestudio.org/openscenegraph-cross-platform-guide.html" rel="alternate"></link><published>2017-07-17T00:00:00+03:00</published><updated>2017-07-17T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-07-17:/openscenegraph-cross-platform-guide.html</id><summary type="html">&lt;p&gt;&lt;img alt="OpenSceneGraph guide" src="http://opengamestudio.org/2017-07-openscenegraph-guide.png"&gt;&lt;/p&gt;
  872. &lt;p&gt;This article summarizes the work we did to produce OpenSceneGraph cross-platform guide.&lt;/p&gt;
  873. &lt;p&gt;June marked the finish of &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide"&gt;OpenSceneGraph cross-platform guide&lt;/a&gt; with the publishing of the last (initially planned) tutorial. The tutorial describes &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/tree/master/1.10.SampleWeb"&gt;how to build and run sample OpenSceneGraph application in Web&lt;/a&gt; using Emscripten.
  874. In case you missed it, here's …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="OpenSceneGraph guide" src="http://opengamestudio.org/2017-07-openscenegraph-guide.png"&gt;&lt;/p&gt;
  875. &lt;p&gt;This article summarizes the work we did to produce OpenSceneGraph cross-platform guide.&lt;/p&gt;
  876. &lt;p&gt;June marked the finish of &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide"&gt;OpenSceneGraph cross-platform guide&lt;/a&gt; with the publishing of the last (initially planned) tutorial. The tutorial describes &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/tree/master/1.10.SampleWeb"&gt;how to build and run sample OpenSceneGraph application in Web&lt;/a&gt; using Emscripten.
  877. In case you missed it, here's a &lt;a href="https://ogstudio.github.io/openscenegraph-cross-platform-guide/"&gt;link to the final application&lt;/a&gt;. Open it in your web browser.&lt;/p&gt;
  878. &lt;p&gt;We started to compose the guide in February when we successfully managed to render a simple model on mobile and web.
  879. We spent 120 hours in five months to produce ten tutorials of the guide.&lt;/p&gt;
  880. &lt;p&gt;We have been doing OpenSceneGraph cross-platform guide for two main reasons:&lt;/p&gt;
  881. &lt;ol&gt;
  882. &lt;li&gt;Keep OpenSceneGraph cross-platform knowledge in easily accessible and reproducible form&lt;/li&gt;
  883. &lt;li&gt;Share the knowledge with OpenSceneGraph community to make it stronger&lt;/li&gt;
  884. &lt;/ol&gt;
  885. &lt;p&gt;We believe we succeeded in both. Here's why:&lt;/p&gt;
  886. &lt;ol&gt;
  887. &lt;li&gt;The guide repository has more &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/stargazers"&gt;stars&lt;/a&gt; (aka "likes") than any other repository of ours&lt;/li&gt;
  888. &lt;li&gt;OpenSceneGraph project leader Robert Osfield said &lt;a href="http://www.mail-archive.com/osg-users@lists.openscenegraph.org/msg74815.html"&gt;"Great work"&lt;/a&gt;, which means a lot&lt;/li&gt;
  889. &lt;li&gt;The guide already has &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/issues"&gt;two issues&lt;/a&gt;&lt;/li&gt;
  890. &lt;/ol&gt;
  891. &lt;p&gt;Reaching our goal of researching OpenSceneGraph cross-platform development and providing the knowledge back to the community just made us happier.&lt;/p&gt;
  892. &lt;p&gt;However, our journey does not stop here. Using the knowledge of the guide, we now continue to work on bringing our tools to support mobile and web, just as we &lt;a href="http://opengamestudio.org/lang/en/news/2456"&gt;promised in January&lt;/a&gt;.&lt;/p&gt;
  893. &lt;p&gt;That's it for summarizing the work we did to produce OpenSceneGraph cross-platform guide.&lt;/p&gt;</content></entry><entry><title>OpenSceneGraph cross-platform guide</title><link href="http://opengamestudio.org/openscenegraph-cross-platform-guide-ru.html" rel="alternate"></link><published>2017-07-17T00:00:00+03:00</published><updated>2017-07-17T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-07-17:/openscenegraph-cross-platform-guide-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="OpenSceneGraph guide" src="http://opengamestudio.org/2017-07-openscenegraph-guide.png"&gt;&lt;/p&gt;
  894. &lt;p&gt;Эта статья резюмирует создание кросс-платформенного руководства OpenSceneGraph.&lt;/p&gt;
  895. &lt;p&gt;Июнь ознаменовал собой окончание работы над &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide"&gt;кросс-платформенным руководством OpenSceneGraph&lt;/a&gt;. Мы опубликовали последний самоучитель (из изначально запланированных). Этот самоучитель описывает &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/tree/master/1.10.SampleWeb"&gt;сборку и запуск примера приложения OpenSceneGraph в вебе&lt;/a&gt; с помощью Emscripten.
  896. Если вы упустили этот самоучитель, то вот &lt;a href="https://ogstudio.github.io/openscenegraph-cross-platform-guide/"&gt;ссылка на приложение&lt;/a&gt; из него. Откройте …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="OpenSceneGraph guide" src="http://opengamestudio.org/2017-07-openscenegraph-guide.png"&gt;&lt;/p&gt;
  897. &lt;p&gt;Эта статья резюмирует создание кросс-платформенного руководства OpenSceneGraph.&lt;/p&gt;
  898. &lt;p&gt;Июнь ознаменовал собой окончание работы над &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide"&gt;кросс-платформенным руководством OpenSceneGraph&lt;/a&gt;. Мы опубликовали последний самоучитель (из изначально запланированных). Этот самоучитель описывает &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/tree/master/1.10.SampleWeb"&gt;сборку и запуск примера приложения OpenSceneGraph в вебе&lt;/a&gt; с помощью Emscripten.
  899. Если вы упустили этот самоучитель, то вот &lt;a href="https://ogstudio.github.io/openscenegraph-cross-platform-guide/"&gt;ссылка на приложение&lt;/a&gt; из него. Откройте ссылку в веб-браузере.&lt;/p&gt;
  900. &lt;p&gt;Мы начали составление руководства в феврале, как только нам удалось отобразить простую модель на мобилках и вебе.
  901. Мы потратили 120 часов за пять месяцев на составление десяти самоучителей этого руководства.&lt;/p&gt;
  902. &lt;p&gt;Создание кросс-платформенного руководства OpenSceneGraph преследовало две основные цели:&lt;/p&gt;
  903. &lt;ol&gt;
  904. &lt;li&gt;Сохранить знания о кросс-платформенной работе с OpenSceneGraph в легкодоступной и воспроизводимой форме&lt;/li&gt;
  905. &lt;li&gt;Поделиться этим знанием с сообществом OpenSceneGraph и тем самым усилить сообщество&lt;/li&gt;
  906. &lt;/ol&gt;
  907. &lt;p&gt;Мы уверены в том, что нам удалось достичь обе цели. И вот почему:&lt;/p&gt;
  908. &lt;ol&gt;
  909. &lt;li&gt;Хранилище руководства получило больше &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/stargazers"&gt;звёзд&lt;/a&gt; (лайков), чем любое другое наше хранилище&lt;/li&gt;
  910. &lt;li&gt;Robert Osfield, лидер проекта OpenSceneGraph, оценил руководство как &lt;a href="http://www.mail-archive.com/osg-users@lists.openscenegraph.org/msg74815.html"&gt;"отличную работу"&lt;/a&gt;; это значит для нас многое&lt;/li&gt;&lt;/li&gt;
  911. &lt;li&gt;У руководства уже есть &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/issues"&gt;два тикета&lt;/a&gt;&lt;/li&gt;
  912. &lt;/ol&gt;
  913. &lt;p&gt;В конце концов, мы просто рады тому факту, что изучили кросс-платформенную разработку с OpenSceneGraph и поделились этим знанием с сообществом.&lt;/p&gt;
  914. &lt;p&gt;Тем не менее, наше путешествие на этом не окончено. Используя знания руководства, мы продолжаем работу над тем, чтобы добавить в свои инструменты поддержку мобилок и веба, как мы &lt;a href="http://opengamestudio.org/lang/ru/news/2456"&gt;обещали в январе&lt;/a&gt;.&lt;/p&gt;
  915. &lt;p&gt;На этом мы заканчиваем резюме о создании кросс-платформенного руководства OpenSceneGraph.&lt;/p&gt;</content></entry><entry><title>iOS tutorial</title><link href="http://opengamestudio.org/ios-tutorial.html" rel="alternate"></link><published>2017-06-08T10:00:00+03:00</published><updated>2017-06-08T10:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-06-08:/ios-tutorial.html</id><summary type="html">&lt;p&gt;&lt;img alt="iOS tutorial" src="http://opengamestudio.org/2017-06-08-ios-refactoring.png"&gt;&lt;/p&gt;
  916. &lt;p&gt;This article describes problems we faced during the creation of iOS tutorial in May 2017.&lt;/p&gt;
  917. &lt;p&gt;&lt;a href="https://twitter.com/OpenGameStudio/status/826816343433498627"&gt;This February&lt;/a&gt; we managed to get simple model rendered under iOS in just a few days. We expected to finish iOS tutorial in no time. However, the reality reminded us: it's easy to come up …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="iOS tutorial" src="http://opengamestudio.org/2017-06-08-ios-refactoring.png"&gt;&lt;/p&gt;
  918. &lt;p&gt;This article describes problems we faced during the creation of iOS tutorial in May 2017.&lt;/p&gt;
  919. &lt;p&gt;&lt;a href="https://twitter.com/OpenGameStudio/status/826816343433498627"&gt;This February&lt;/a&gt; we managed to get simple model rendered under iOS in just a few days. We expected to finish iOS tutorial in no time. However, the reality reminded us: it's easy to come up with a hackish demo that works for one person, but it's hard to create a concise example that works for everyone.&lt;/p&gt;
  920. &lt;h3&gt;Native library&lt;/h3&gt;
  921. &lt;p&gt;The first question we had to answer was: should the sample application be part of Xcode project or be a separately built library?&lt;/p&gt;
  922. &lt;p&gt;We had to consider the following facts:&lt;/p&gt;
  923. &lt;ol&gt;
  924. &lt;li&gt;Xcode project can use C++ directly (thanks to Objective-C++) without stuff like JNI&lt;ul&gt;
  925. &lt;li&gt;There's no need for a separate library (+ application)&lt;/li&gt;
  926. &lt;li&gt;Creating a separate library is an additional work (- library)&lt;/li&gt;
  927. &lt;/ul&gt;
  928. &lt;/li&gt;
  929. &lt;li&gt;OpenSceneGraph builds libraries&lt;ul&gt;
  930. &lt;li&gt;It's easier to use standard build process (+ library)&lt;/li&gt;
  931. &lt;li&gt;It's harder to create custom build process just for a single platform (- application)&lt;/li&gt;
  932. &lt;/ul&gt;
  933. &lt;/li&gt;
  934. &lt;li&gt;OpenSceneGraph uses CMake build system, which is not supported by Xcode&lt;ul&gt;
  935. &lt;li&gt;Xcode project can't include CMake files (- application)&lt;/li&gt;
  936. &lt;li&gt;It's easy to create custom CMake file that includes OpenSceneGraph CMake file to build a single library (+ library)&lt;/li&gt;
  937. &lt;/ul&gt;
  938. &lt;/li&gt;
  939. &lt;li&gt;CMake can generate Xcode project&lt;ul&gt;
  940. &lt;li&gt;It's possible to create a CMake file that builds both OpenSceneGraph and the sample application (+ application)&lt;/li&gt;
  941. &lt;li&gt;Xcode is the de-facto tool to create Xcode projects; it's easier to use standard build process (+ library)&lt;/li&gt;
  942. &lt;/ul&gt;
  943. &lt;/li&gt;
  944. &lt;/ol&gt;
  945. &lt;p&gt;After evaluating the pros and cons of each approach, we decided to turn the sample application into a library and include it in Xcode project. The downside of this approach is that simulator and real device builds need separate library builds.&lt;/p&gt;
  946. &lt;h3&gt;Refactoring&lt;/h3&gt;
  947. &lt;p&gt;The second question we had to answer was: should there be a single source code base for all platforms or several ones, one for each platform?&lt;/p&gt;
  948. &lt;p&gt;While doing Android tutorial we used single source code base because it worked fine for desktop and Android. As we started to work through iOS tutorial, it became apparent that particular features may or may not work on some platforms. For example, one feature may work on desktop and iOS, but not Android. Another feature may work on iOS and Android, but not desktop. Since we didn't want to pollute the code with #ifdefs, we started to put each platform combination into a separate file. The number of files grew rapidly. The files were reusable, but it became extremely hard to see the whole picture.&lt;/p&gt;
  949. &lt;p&gt;At this point, we realized there's the second question. We reminded ourselves that the main purpose of the sample source code is to teach how to do basic OpenSceneGraph things, not create a reusable library with API that is stable across several years.&lt;/p&gt;
  950. &lt;p&gt;That's when our home grown feature tool came into play. With its help, we separated the code into several parts, which in the end produce just two files for each platform:&lt;/p&gt;
  951. &lt;ol&gt;
  952. &lt;li&gt;functions.h - contains reusable classless functions&lt;/li&gt;
  953. &lt;li&gt;main.h - contains the rest of the sample application code&lt;/li&gt;
  954. &lt;/ol&gt;
  955. &lt;p&gt;Their contents differ slightly for each platform, but it's easy to see the whole picture now.&lt;/p&gt;
  956. &lt;p&gt;That's it for describing problems we faced during the creation of iOS tutorial in May 2017.&lt;/p&gt;</content></entry><entry><title>Самоучитель iOS</title><link href="http://opengamestudio.org/ios-tutorial-ru.html" rel="alternate"></link><published>2017-06-08T10:00:00+03:00</published><updated>2017-06-08T10:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-06-08:/ios-tutorial-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Самоучитель iOS" src="http://opengamestudio.org/2017-06-08-ios-refactoring.png"&gt;&lt;/p&gt;
  957. &lt;p&gt;Эта статья описывает проблемы, с которыми мы столкнулись во время создания самоучителя для iOS в мае 2017.&lt;/p&gt;
  958. &lt;p&gt;&lt;a href="https://twitter.com/OpenGameStudio/status/826816343433498627"&gt;В феврале&lt;/a&gt; мы сумели отобразить простую модель под iOS за считанные дни. Это дало нам уверенность, что самоучитель для iOS мы сделаем столь же быстро. Тем не менее, реальность напомнила нам о простой …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Самоучитель iOS" src="http://opengamestudio.org/2017-06-08-ios-refactoring.png"&gt;&lt;/p&gt;
  959. &lt;p&gt;Эта статья описывает проблемы, с которыми мы столкнулись во время создания самоучителя для iOS в мае 2017.&lt;/p&gt;
  960. &lt;p&gt;&lt;a href="https://twitter.com/OpenGameStudio/status/826816343433498627"&gt;В феврале&lt;/a&gt; мы сумели отобразить простую модель под iOS за считанные дни. Это дало нам уверенность, что самоучитель для iOS мы сделаем столь же быстро. Тем не менее, реальность напомнила нам о простой вещи: быстро сделать можно лишь поделку на коленке, работающую только у самого разработчика; над логически связанным примером, работающим у всех, придётся попотеть.&lt;/p&gt;
  961. &lt;h3&gt;Нативная библиотека&lt;/h3&gt;
  962. &lt;p&gt;Прежде всего нам необходимо было ответить на следующий вопрос: "должен ли пример приложения быть частью проекта Xcode или отдельной библиотекой?"&lt;/p&gt;
  963. &lt;p&gt;Для принятия решения мы использовали следующие факты:&lt;/p&gt;
  964. &lt;ol&gt;
  965. &lt;li&gt;Проект Xcode может напрямую использовать C++ (благодаря Objective-C++) без прослоек вроде JNI&lt;ul&gt;
  966. &lt;li&gt;Отдельная библиотека не нужна (+ приложение)&lt;/li&gt;
  967. &lt;li&gt;Создание отдельной библиотеки - это дополнительная работа (- библиотека)&lt;/li&gt;
  968. &lt;/ul&gt;
  969. &lt;/li&gt;
  970. &lt;li&gt;OpenSceneGraph собирается в библиотеки&lt;ul&gt;
  971. &lt;li&gt;Легче использовать стандартный процесс сборки (+ библиотека)&lt;/li&gt;
  972. &lt;li&gt;Создавать свой процесс сборки лишь для одной платформы сложно (- приложение)&lt;/li&gt;
  973. &lt;/ul&gt;
  974. &lt;/li&gt;
  975. &lt;li&gt;OpenSceneGraph использует систему сборки CMake, которая не поддерживается Xcode&lt;ul&gt;
  976. &lt;li&gt;Проект Xcode не может включать файлы CMake (- приложение)&lt;/li&gt;
  977. &lt;li&gt;Свой файл CMake может с лёгкостью включить файл OpenSceneGraph CMake для сборки единой библиотеки (+ библиотека)&lt;/li&gt;
  978. &lt;/ul&gt;
  979. &lt;/li&gt;
  980. &lt;li&gt;CMake может генерировать проект Xcode&lt;ul&gt;
  981. &lt;li&gt;Можно создать файл CMake, который будет собирать как OpenSceneGraph, так и пример приложения (+ приложение)&lt;/li&gt;
  982. &lt;li&gt;Xcode - это де-факто инструмент для создания проектов Xcode; легче использовать стандартный процесс сборки (+ библиотека)&lt;/li&gt;
  983. &lt;/ul&gt;
  984. &lt;/li&gt;
  985. &lt;/ol&gt;
  986. &lt;p&gt;Оценив плюсы и минусы обоих подходов, мы решили сделать библиотеку, которую можно включать в проект Xcode. Минусом данного подхода является то, что сборки приложения для симулятора и реального устройства используют разные сборки библиотеки.&lt;/p&gt;
  987. &lt;h3&gt;Рефакторинг&lt;/h3&gt;
  988. &lt;p&gt;Также нам пришлось ответить на ещё один вопрос: "использовать ли единую кодовую базу для всех платформ или несколько под каждую платформу?"&lt;/p&gt;
  989. &lt;p&gt;При создании самоучителя для Android мы использовали единую кодовую базу, т.к. она отлично работала для десктопа и Android. Когда мы начали работу над самоучителем iOS, стало ясно, что часть функционала либо работает, либо не работает на некоторых платформах. Например, один функционал может работать на десктопе и iOS, но не работать на Android. Другой функционал может работать на iOS и Android, но не работать на десктопе. Т.к. мы не хотели загрязнять код кучей #ifdef, мы решили помещать функционал, специфичный для конкретной платформы или нескольких платформ, в разные файлы. Это привело к резкому увеличению количества файлов. Такой подход хорошо подходил для повторного использования, но совершенно не годился для понимания общей картины.&lt;/p&gt;
  990. &lt;p&gt;В этот момент мы осознали необходимость ответа на второй вопрос. Мы напомнили себе, что главная цель примера приложения состоит в том, чтобы обучить базовым вещам OpenSceneGraph, а не создать повторно используемую библиотеку с API, который будет жить без изменений десятилетиями.&lt;/p&gt;
  991. &lt;p&gt;Для ответа на этот вопрос нам помог наш внутренний инструмент feature tool. С его помощью мы разделили код на несколько частей, который в итоге собирается ровно в два файла для каждой платформы:&lt;/p&gt;
  992. &lt;ol&gt;
  993. &lt;li&gt;functions.h - содержит повторно используемые бесклассовые функции&lt;/li&gt;
  994. &lt;li&gt;main.h - содержит остальной код приложения&lt;/li&gt;
  995. &lt;/ol&gt;
  996. &lt;p&gt;Их содержимое несколько отличается для каждой из платформ, но наличие всего двух файлов позволяет увидеть общую картину.&lt;/p&gt;
  997. &lt;p&gt;На этом мы заканчиваем описание проблем, с которыми мы столкнулись во время создания самоучителя для iOS в мае 2017.&lt;/p&gt;</content></entry><entry><title>OpenSceneGraph sample</title><link href="http://opengamestudio.org/osg-sample.html" rel="alternate"></link><published>2017-05-12T00:00:00+03:00</published><updated>2017-05-12T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-05-12:/osg-sample.html</id><summary type="html">&lt;p&gt;&lt;img alt="OSG sample" src="http://opengamestudio.org/2017-05_osg-sample.png"&gt;&lt;/p&gt;
  998. &lt;p&gt;This article describes creation of the tutorials for building sample OpenSceneGraph application under Linux, macOS, Windows, and Android in April 2017.&lt;/p&gt;
  999. &lt;p&gt;Previous tutorials described how to install OpenSceneGraph under Linux, macOS, Windows and render a model using the standard &lt;strong&gt;osgviewer&lt;/strong&gt; tool. This time we worked on a &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide-application"&gt;sample OpenSceneGraph application …&lt;/a&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="OSG sample" src="http://opengamestudio.org/2017-05_osg-sample.png"&gt;&lt;/p&gt;
  1000. &lt;p&gt;This article describes creation of the tutorials for building sample OpenSceneGraph application under Linux, macOS, Windows, and Android in April 2017.&lt;/p&gt;
  1001. &lt;p&gt;Previous tutorials described how to install OpenSceneGraph under Linux, macOS, Windows and render a model using the standard &lt;strong&gt;osgviewer&lt;/strong&gt; tool. This time we worked on a &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide-application"&gt;sample OpenSceneGraph application&lt;/a&gt; that would run under Linux, macOS, Windows, and Android.&lt;/p&gt;
  1002. &lt;p&gt;The application is very basic and has the following features:&lt;/p&gt;
  1003. &lt;ol&gt;
  1004. &lt;li&gt;Render window creation&lt;/li&gt;
  1005. &lt;li&gt;Model loading&lt;/li&gt;
  1006. &lt;li&gt;Model rendering with simple GLSL shaders&lt;/li&gt;
  1007. &lt;li&gt;Model motion with a mouse under Linux, macOS, Windows and a finger under Android&lt;/li&gt;
  1008. &lt;/ol&gt;
  1009. &lt;p&gt;Creating the tutorials for Linux, macOS, Windows was so easy and straightforward, that it only took us half a month. We spent the second half of the month creating Android tutorial.&lt;/p&gt;
  1010. &lt;p&gt;Our &lt;a href="http://opengamestudio.org/2016-october-recap.html"&gt;first successful Android build&lt;/a&gt; last year included hacks and non-obvious steps to make OpenSceneGraph run under Android. This time we wanted a cleaner, faster, and cheaper approach.&lt;/p&gt;
  1011. &lt;p&gt;The approach we ended up with requires just a few files and a few changes to the original Android Studio project (with C++ support) to make sample OpenSceneGraph application run under Android.&lt;/p&gt;
  1012. &lt;p&gt;Here's a quick rundown of the files:&lt;/p&gt;
  1013. &lt;ol&gt;
  1014. &lt;li&gt;GLES2 surface&lt;/li&gt;
  1015. &lt;li&gt;Render activity to render to the surface&lt;/li&gt;
  1016. &lt;li&gt;Native library Java interface&lt;/li&gt;
  1017. &lt;li&gt;Native library C++ implementation&lt;/li&gt;
  1018. &lt;li&gt;CMake file to build native library&lt;/li&gt;
  1019. &lt;li&gt;Render activity layout&lt;/li&gt;
  1020. &lt;li&gt;Model to display&lt;/li&gt;
  1021. &lt;/ol&gt;
  1022. &lt;p&gt;Here's a quick rundown of the project changes:&lt;/p&gt;
  1023. &lt;ol&gt;
  1024. &lt;li&gt;Update Android manifest to use GLES2 and render activity&lt;/li&gt;
  1025. &lt;li&gt;Reference native library's CMake file in the project's CMake file&lt;/li&gt;
  1026. &lt;/ol&gt;
  1027. &lt;p&gt;OpenSceneGraph documentation suggests building OpenSceneGraph outside Android Studio with CMake. However, this approach has the following limitations:&lt;/p&gt;
  1028. &lt;ol&gt;
  1029. &lt;li&gt;You have to build OpenSceneGraph for each target architecture&lt;/li&gt;
  1030. &lt;li&gt;You have to manually copy/reference built OpenSceneGraph libraries into Android Studio project&lt;/li&gt;
  1031. &lt;/ol&gt;
  1032. &lt;p&gt;Our approach includes building OpenSceneGraph for those target architectures that Android Studio project is built for. Also, OpenSceneGraph is already referenced, so no extra work is required: you just need to rebuild the project, and you're done.&lt;/p&gt;
  1033. &lt;p&gt;That's it for describing the creation of the tutorials for building sample OpenSceneGraph application under Linux, macOS, Windows, and Android in April 2017.&lt;/p&gt;</content></entry><entry><title>Приложение OpenSceneGraph</title><link href="http://opengamestudio.org/osg-sample-ru.html" rel="alternate"></link><published>2017-05-12T00:00:00+03:00</published><updated>2017-05-12T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-05-12:/osg-sample-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="OSG sample" src="http://opengamestudio.org/2017-05_osg-sample.png"&gt;&lt;/p&gt;
  1034. &lt;p&gt;Эта статья описывает создание самоучителей по сборке приложения OpenSceneGraph на Linux, macOS, Windows и Android в апреле 2017.&lt;/p&gt;
  1035. &lt;p&gt;Предыдущие самоучители описывали установку OpenSceneGraph на Linux, macOS, Windows и отображение модели с помощью стандартного инструмента &lt;strong&gt;osgviewer&lt;/strong&gt;. На этот раз результатом нашей работы стало &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide-application"&gt;приложение OpenSceneGraph&lt;/a&gt;, которое работает на Linux, macOS, Windows …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="OSG sample" src="http://opengamestudio.org/2017-05_osg-sample.png"&gt;&lt;/p&gt;
  1036. &lt;p&gt;Эта статья описывает создание самоучителей по сборке приложения OpenSceneGraph на Linux, macOS, Windows и Android в апреле 2017.&lt;/p&gt;
  1037. &lt;p&gt;Предыдущие самоучители описывали установку OpenSceneGraph на Linux, macOS, Windows и отображение модели с помощью стандартного инструмента &lt;strong&gt;osgviewer&lt;/strong&gt;. На этот раз результатом нашей работы стало &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide-application"&gt;приложение OpenSceneGraph&lt;/a&gt;, которое работает на Linux, macOS, Windows и Android.&lt;/p&gt;
  1038. &lt;p&gt;Приложение очень простое. Оно умеет следующее:&lt;/p&gt;
  1039. &lt;ol&gt;
  1040. &lt;li&gt;Создание окна для отрисовки&lt;/li&gt;
  1041. &lt;li&gt;Загрузка модели&lt;/li&gt;
  1042. &lt;li&gt;Отрисовка модели с помощью простых шейдеров GLSL&lt;/li&gt;
  1043. &lt;li&gt;Перемещение модели с помощью мыши на Linux, macOS, Windows и пальца на Android&lt;/li&gt;
  1044. &lt;/ol&gt;
  1045. &lt;p&gt;Создать самоучители для Linux, macOS, Windows было настолько простой и понятной задачей, что мы справились с ней за пару недель. Оставшуюся половину месяца мы потратили на создание самоучителя для Android.&lt;/p&gt;
  1046. &lt;p&gt;Наша &lt;a href="http://opengamestudio.org/2016-october-recap-ru.html"&gt;первая успешная сборка под Android&lt;/a&gt; в прошлом году требовала множество неочивидных телодвижений. В этот раз мы хотели получить более чистый, быстрый и дешёвый подход.&lt;/p&gt;
  1047. &lt;p&gt;Нам это удалось. В результате всё, что нужно для работы приложения OpenSceneGraph на Android, уместилось в набор из нескольких файлов и небольших изменений для стандартного проекта Android Studio (с поддержкой C++).&lt;/p&gt;
  1048. &lt;p&gt;Краткий перечень файлов:&lt;/p&gt;
  1049. &lt;ol&gt;
  1050. &lt;li&gt;Поверхность GLES2&lt;/li&gt;
  1051. &lt;li&gt;Activity для отрисовки на этой поверхности&lt;/li&gt;
  1052. &lt;li&gt;Интерфейс Java для нативной библиотеки&lt;/li&gt;
  1053. &lt;li&gt;Реализация нативной библиотеки на C++&lt;/li&gt;
  1054. &lt;li&gt;Файл CMake для сборки нативной библиотеки&lt;/li&gt;
  1055. &lt;li&gt;Activity layout&lt;/li&gt;
  1056. &lt;li&gt;Модель для отрисовки&lt;/li&gt;
  1057. &lt;/ol&gt;
  1058. &lt;p&gt;Краткий перечень изменений проекта:&lt;/p&gt;
  1059. &lt;ol&gt;
  1060. &lt;li&gt;Обновление Android manifest для использования GLES2 и Activity&lt;/li&gt;
  1061. &lt;li&gt;Использование файла CMake нативной библиотеки в проектном файле CMake&lt;/li&gt;
  1062. &lt;/ol&gt;
  1063. &lt;p&gt;Документация OpenSceneGraph предполагает сборку OpenSceneGraph вне Android Studio с помощью CMake. Такой подход имеет следующие ограничения:&lt;/p&gt;
  1064. &lt;ol&gt;
  1065. &lt;li&gt;Ручная сборка OpenSceneGraph под каждую платформу&lt;/li&gt;
  1066. &lt;li&gt;Ручное копирование собранных библиотек OpenSceneGraph в проект Android Studio&lt;/li&gt;
  1067. &lt;/ol&gt;
  1068. &lt;p&gt;Наш подход включает в себя сборку OpenSceneGraph для тех платформ, для которых собирается проект Android Studio. К тому же, OpenSceneGraph используется как часть проекта, поэтому нет никакой дополнительной рутины: достаточно просто пересобрать проект, и всё готово.&lt;/p&gt;
  1069. &lt;p&gt;На этом мы заканчиваем описание создания самоучителей по сборке приложения OpenSceneGraph на Linux, macOS, Windows и Android в апреле 2017.&lt;/p&gt;</content></entry><entry><title>It's all fine</title><link href="http://opengamestudio.org/its-all-fine.html" rel="alternate"></link><published>2017-04-07T00:00:00+03:00</published><updated>2017-04-07T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-04-07:/its-all-fine.html</id><summary type="html">&lt;p&gt;&lt;img alt="ItsAllFine" src="http://opengamestudio.org/2017-04_its-all-fine.png"&gt;&lt;/p&gt;
  1070. &lt;p&gt;This article describes creation of the first four OpenSceneGraph tutorials in March 2017.&lt;/p&gt;
  1071. &lt;p&gt;The &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/"&gt;first four OpenSceneGraph tutorials&lt;/a&gt; explain how to create a cube model with Blender and display the model under Linux, macOS, or Windows using OpenSceneGraph tool called osgviewer.&lt;/p&gt;
  1072. &lt;p&gt;The whole process of creating a single tutorial turned …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="ItsAllFine" src="http://opengamestudio.org/2017-04_its-all-fine.png"&gt;&lt;/p&gt;
  1073. &lt;p&gt;This article describes creation of the first four OpenSceneGraph tutorials in March 2017.&lt;/p&gt;
  1074. &lt;p&gt;The &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/"&gt;first four OpenSceneGraph tutorials&lt;/a&gt; explain how to create a cube model with Blender and display the model under Linux, macOS, or Windows using OpenSceneGraph tool called osgviewer.&lt;/p&gt;
  1075. &lt;p&gt;The whole process of creating a single tutorial turned out to be pretty daunting because it includes several tasks:&lt;/p&gt;
  1076. &lt;ol&gt;
  1077. &lt;li&gt;Record original video depicting one or more steps&lt;/li&gt;
  1078. &lt;li&gt;Name the steps as clear as possible&lt;/li&gt;
  1079. &lt;li&gt;Select the parts of the video that display the step&lt;/li&gt;
  1080. &lt;li&gt;Remove the parts of the video that bare no value, e.g., waiting in the middle of compilation&lt;/li&gt;
  1081. &lt;li&gt;Select a single frame to best represent current step, e.g., typing a specific command&lt;/li&gt;
  1082. &lt;li&gt;Add a detailed description to article, why current step should have been taken&lt;/li&gt;
  1083. &lt;li&gt;Proof-read the article&lt;/li&gt;
  1084. &lt;li&gt;Correct typos and video timing&lt;/li&gt;
  1085. &lt;li&gt;Review the whole video&lt;/li&gt;
  1086. &lt;li&gt;Upload the video to YouTube with timestamps of steps for easier navigation&lt;/li&gt;
  1087. &lt;/ol&gt;
  1088. &lt;p&gt;Some of those tasks had to be repeated multiple times until the combination of video, text, and article was clear and logical.&lt;/p&gt;
  1089. &lt;p&gt;Overall, it took us 30 hours to create the tutorials. The whole process gave us a lot of experience, which will help us in shaping learning materials for our technologies in the future. We don't know how they will look like exactly, but they will definitely be better.&lt;/p&gt;
  1090. &lt;p&gt;That's it for describing creation of the first four OpenSceneGraph tutorials in March 2017.&lt;/p&gt;</content></entry><entry><title>Всё проходит хорошо</title><link href="http://opengamestudio.org/its-all-fine-ru.html" rel="alternate"></link><published>2017-04-07T00:00:00+03:00</published><updated>2017-04-07T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-04-07:/its-all-fine-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="ItsAllFine" src="http://opengamestudio.org/2017-04_its-all-fine.png"&gt;&lt;/p&gt;
  1091. &lt;p&gt;Эта статья рассказывает о создании первых четырёх самоучителей OpenSceneGraph в марте 2017.&lt;/p&gt;
  1092. &lt;p&gt;&lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/"&gt;Первые четыре самоучителя OpenSceneGraph&lt;/a&gt; объясняют, как создать модель куба в Blender и затем отобразить её на Linux, macOS или Windows с помощью osgviewer, стандартного инструмента OpenSceneGraph.&lt;/p&gt;
  1093. &lt;p&gt;Процесс создания одного самоучителя оказался довольно утомительным, т.к. он состоит из …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="ItsAllFine" src="http://opengamestudio.org/2017-04_its-all-fine.png"&gt;&lt;/p&gt;
  1094. &lt;p&gt;Эта статья рассказывает о создании первых четырёх самоучителей OpenSceneGraph в марте 2017.&lt;/p&gt;
  1095. &lt;p&gt;&lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/"&gt;Первые четыре самоучителя OpenSceneGraph&lt;/a&gt; объясняют, как создать модель куба в Blender и затем отобразить её на Linux, macOS или Windows с помощью osgviewer, стандартного инструмента OpenSceneGraph.&lt;/p&gt;
  1096. &lt;p&gt;Процесс создания одного самоучителя оказался довольно утомительным, т.к. он состоит из следующих задач:&lt;/p&gt;
  1097. &lt;ol&gt;
  1098. &lt;li&gt;Записать видео с одним или более шагами&lt;/li&gt;
  1099. &lt;li&gt;Назвать эти шаги как можно яснее&lt;/li&gt;
  1100. &lt;li&gt;Выбрать те части видео, которые непосредственно показывают шаг&lt;/li&gt;
  1101. &lt;li&gt;Убрать те части видео, которые не имеют значения, например, ожидание сборки&lt;/li&gt;
  1102. &lt;li&gt;Выбрать один кадр, лучше всего передающий смысл этого шага, например, набор команды&lt;/li&gt;
  1103. &lt;li&gt;Добавить детальное описание в статью, почему этот шаг был необходим&lt;/li&gt;
  1104. &lt;li&gt;Перечитать статью&lt;/li&gt;
  1105. &lt;li&gt;Поправить опечатки и монтаж видео&lt;/li&gt;
  1106. &lt;li&gt;Пересмотреть полное видео&lt;/li&gt;
  1107. &lt;li&gt;Загрузить видео на YouTube с временными отметками шагов для упрощения навигации&lt;/li&gt;
  1108. &lt;/ol&gt;
  1109. &lt;p&gt;Некоторые из этих задач приходилось повторять несколько раз до тех пор, пока комбинация видео, текста и статьи не получилась целостной.&lt;/p&gt;
  1110. &lt;p&gt;Всего мы потратили 30 часов на создание самоучителей. В ходе их создания мы почерпнули много нового, что поможет нам улучшить обучающие материалы наших технологий в будущем. Сейчас мы ещё не в курсе, как именно эти материалы будут выглядеть, но они точно будут лучше.&lt;/p&gt;
  1111. &lt;p&gt;На этом мы заканчиваем рассказ о создании первых четырёх самоучителей OpenSceneGraph в марте 2017.&lt;/p&gt;</content></entry><entry><title>Let's go</title><link href="http://opengamestudio.org/lets-go.html" rel="alternate"></link><published>2017-03-16T00:00:00+03:00</published><updated>2017-03-16T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-03-16:/lets-go.html</id><summary type="html">&lt;p&gt;&lt;img alt="Let's go" src="http://opengamestudio.org/2017-03_lets-go.png"&gt;&lt;/p&gt;
  1112. &lt;p&gt;In this article we describe our progress in January and February of 2017: rendering under iOS/Web and a new tutorial tool.&lt;/p&gt;
  1113. &lt;p&gt;&lt;strong&gt;Rendering under iOS/Web&lt;/strong&gt;&lt;/p&gt;
  1114. &lt;p&gt;To our surprise, we got a simple red cube rendered under &lt;a href="https://twitter.com/OpenGameStudio/status/826816343433498627"&gt;iOS&lt;/a&gt; and &lt;a href="https://twitter.com/OpenGameStudio/status/829731986264698881"&gt;Web&lt;/a&gt; pretty fast: in early February. However, this is only the …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Let's go" src="http://opengamestudio.org/2017-03_lets-go.png"&gt;&lt;/p&gt;
  1115. &lt;p&gt;In this article we describe our progress in January and February of 2017: rendering under iOS/Web and a new tutorial tool.&lt;/p&gt;
  1116. &lt;p&gt;&lt;strong&gt;Rendering under iOS/Web&lt;/strong&gt;&lt;/p&gt;
  1117. &lt;p&gt;To our surprise, we got a simple red cube rendered under &lt;a href="https://twitter.com/OpenGameStudio/status/826816343433498627"&gt;iOS&lt;/a&gt; and &lt;a href="https://twitter.com/OpenGameStudio/status/829731986264698881"&gt;Web&lt;/a&gt; pretty fast: in early February. However, this is only the beginning of this year's challenge to support Android, iOS, and Web platforms. There's a long and bumpy road ahead of us as we need a lot more on each platform before we can claim a success: visual effects, Python scripting, data archives.&lt;/p&gt;
  1118. &lt;p&gt;Since it took us about four months to get to mobile and web platforms, we decided to share our knowledge and help OpenSceneGraph community with a guide that shows how to use OpenSceneGraph on desktop, mobile, and web. We believe the more widespread OpenSceneGraph is, the stronger our technology becomes. As Isaac Newton said, "If I have seen further, it is by standing on the shoulders of giants." OpenSceneGraph is our giant.&lt;/p&gt;
  1119. &lt;p&gt;&lt;strong&gt;Tutorial tool&lt;/strong&gt;&lt;/p&gt;
  1120. &lt;p&gt;Having conducted four live sessions before, it was clear the guide needs videos depicting every nuance. However, bare video alone is only good for showing what to do and not for explaining why do it in a certain way. That's why we decided to combine video with text in the forms of video subtitles and separate articles.&lt;/p&gt;
  1121. &lt;p&gt;To combine text and video, we first tried &lt;a href="http://openshotvideo.com"&gt;OpenShot&lt;/a&gt;. It worked well, but we quickly saw its limitations:&lt;/p&gt;
  1122. &lt;ul&gt;
  1123. &lt;li&gt;Too much time is spent on adjusting time frames and animations&lt;/li&gt;
  1124. &lt;li&gt;Project file and original resources are hard to track with VCS&lt;/li&gt;
  1125. &lt;/ul&gt;
  1126. &lt;p&gt;Since OpenSceneGraph cross-platform guide would consist of several tutorials, we decided to automate the process. Brief research revealed a great multimedia framework called &lt;a href="http://mltframework.org"&gt;MLT&lt;/a&gt;, which powers OpenShot itself. With MLT we got our tutorial tool in no time.&lt;/p&gt;
  1127. &lt;p&gt;Currently, the tutorial tool allows anyone to combine text and video using a simple text file like this:&lt;/p&gt;
  1128. &lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;background bg.png
  1129. text 5 Let&amp;#39;s install Blender
  1130. video 0:6 install_blender.mp4
  1131. text 5 Installing it with apt
  1132. video 6:26 install_blender.mp4
  1133. text 5 We&amp;#39;re still installing it
  1134. video 26:56 install_blender.mp4
  1135. text 5 Congratulations! We just finished installing Blender
  1136. &lt;/pre&gt;&lt;/div&gt;
  1137. &lt;p&gt;This is the actual script. See the final result &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/tree/master/tutorial-tool"&gt;here&lt;/a&gt;.&lt;/p&gt;
  1138. &lt;p&gt;That's it for describing our progress in January and February of 2017: rendering under iOS/Web and the new tutorial tool.&lt;/p&gt;</content></entry><entry><title>Поехали</title><link href="http://opengamestudio.org/lets-go-ru.html" rel="alternate"></link><published>2017-03-16T00:00:00+03:00</published><updated>2017-03-16T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-03-16:/lets-go-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Let's go" src="http://opengamestudio.org/2017-03_lets-go.png"&gt;&lt;/p&gt;
  1139. &lt;p&gt;В этой статье мы расскажем о результатах нашей работы в январе и феврале 2017: отображении куба на iOS/Веб и нашем инструменте для создания самоучителей.&lt;/p&gt;
  1140. &lt;p&gt;&lt;strong&gt;Отображение куба на iOS/Web&lt;/strong&gt;&lt;/p&gt;
  1141. &lt;p&gt;К нашему удивлению, мы смогли отобразить простой красный куб на &lt;a href="https://twitter.com/OpenGameStudio/status/826816343433498627"&gt;iOS&lt;/a&gt; и &lt;a href="https://twitter.com/OpenGameStudio/status/829731986264698881"&gt;Веб&lt;/a&gt; довольно быстро: в начале февраля. Тем не …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Let's go" src="http://opengamestudio.org/2017-03_lets-go.png"&gt;&lt;/p&gt;
  1142. &lt;p&gt;В этой статье мы расскажем о результатах нашей работы в январе и феврале 2017: отображении куба на iOS/Веб и нашем инструменте для создания самоучителей.&lt;/p&gt;
  1143. &lt;p&gt;&lt;strong&gt;Отображение куба на iOS/Web&lt;/strong&gt;&lt;/p&gt;
  1144. &lt;p&gt;К нашему удивлению, мы смогли отобразить простой красный куб на &lt;a href="https://twitter.com/OpenGameStudio/status/826816343433498627"&gt;iOS&lt;/a&gt; и &lt;a href="https://twitter.com/OpenGameStudio/status/829731986264698881"&gt;Веб&lt;/a&gt; довольно быстро: в начале февраля. Тем не менее, это лишь начало поддержки платформ Android, iOS и Веб. Впереди нас ждёт тернистая дорога, т.к. нам предстоит сделать ещё много вещей, прежде чем мы сможем объявить о полноценной поддержке этих платформ: визуальные эффекты, скрипты Python, архивы данных.&lt;/p&gt;
  1145. &lt;p&gt;Т.к. нам потребовалось четыре месяца для начала поддержки платформ Android, iOS и Веб, мы решили поделиться своими знаниями и помочь сообществу OpenSceneGraph. Мы напишем руководство по использованию OpenSceneGraph на ПК, мобилках и Вебе. Мы верим: чем более распространён OpenSceneGraph, тем сильнее наши собственные технологии. Как сказал Исаак Ньютон: "Если я видел дальше других, то потому, что стоял на плечах гигантов". OpenSceneGraph - наш гигант.&lt;/p&gt;
  1146. &lt;p&gt;&lt;strong&gt;Инструмент для создания самоучителей&lt;/strong&gt;&lt;/p&gt;
  1147. &lt;p&gt;Имея за плечами опыт проведения четырёх прямых эфиров, нам стало ясно, что руководство по использованию OpenSceneGraph будет полезно лишь при наличии видео. Но голое видео способно отразить лишь то, что мы делаем, но не то, почему мы делаем именно это и именно так. Поэтому мы решили совместить видео с текстом в форме как субтитров к видео, так и отдельных статей.&lt;/p&gt;
  1148. &lt;p&gt;Первую попытку совмещения видео с текстом мы начали с помощью &lt;a href="http://openshotvideo.com"&gt;OpenShot&lt;/a&gt;. Инструмент хороший, но с первого же дня использования стали очевидны следующие ограничения:&lt;/p&gt;
  1149. &lt;ul&gt;
  1150. &lt;li&gt;Настройка моментов отображения текста и анимаций занимает много времени&lt;/li&gt;
  1151. &lt;li&gt;Файл проекта и исходные ресурсы сложно положить в систему контроля версий&lt;/li&gt;
  1152. &lt;/ul&gt;
  1153. &lt;p&gt;Т.к. руководство по использованию OpenSceneGraph будет состоять из нескольких самоучителей, мы решили автоматизировать процесс. Быстрый поиск рассказал нам о существовании замечательного мультимедийного фреймворка &lt;a href="http://mltframework.org"&gt;MLT&lt;/a&gt;, который используется и в OpenShot. С помощью MLT мы быстро сделали свой инструмент для создания самоучителей.&lt;/p&gt;
  1154. &lt;p&gt;На текущий момент наш инструмент позволяет совместить видео и текст с помощью простого текстового файла:&lt;/p&gt;
  1155. &lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;background bg.png
  1156. text 5 Let&amp;#39;s install Blender
  1157. video 0:6 install_blender.mp4
  1158. text 5 Installing it with apt
  1159. video 6:26 install_blender.mp4
  1160. text 5 We&amp;#39;re still installing it
  1161. video 26:56 install_blender.mp4
  1162. text 5 Congratulations! We just finished installing Blender
  1163. &lt;/pre&gt;&lt;/div&gt;
  1164. &lt;p&gt;Это реальный скрипт. Конечный результат можно увидеть &lt;a href="https://github.com/OGStudio/openscenegraph-cross-platform-guide/tree/master/tutorial-tool"&gt;здесь&lt;/a&gt;.&lt;/p&gt;
  1165. &lt;p&gt;На этом мы заканчиваем рассказ о результатах нашей работы в январе и феврале 2017: отображении куба на iOS/Веб и нашем инструменте для создания самоучителей.&lt;/p&gt;</content></entry><entry><title>The year of challenges</title><link href="http://opengamestudio.org/the-year-of-challenges.html" rel="alternate"></link><published>2017-01-25T00:00:00+03:00</published><updated>2017-01-25T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-01-25:/the-year-of-challenges.html</id><summary type="html">&lt;p&gt;&lt;img alt="The year of challenges" src="http://opengamestudio.org/2017-01_the-year-of-challenges.png"&gt;&lt;/p&gt;
  1166. &lt;p&gt;This article describes our plans for 2017.&lt;/p&gt;
  1167. &lt;p&gt;Our past plans suggested we would have Android platform support by this time. However, we have a long way to go, before we can declare Android support. See for yourself:&lt;/p&gt;
  1168. &lt;p&gt;&lt;img alt="Android rendering" src="http://opengamestudio.org/2017-01_mjin-android-gles.png"&gt;&lt;/p&gt;
  1169. &lt;p&gt;Some people would consider this a failure. We don't. We see a chance …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="The year of challenges" src="http://opengamestudio.org/2017-01_the-year-of-challenges.png"&gt;&lt;/p&gt;
  1170. &lt;p&gt;This article describes our plans for 2017.&lt;/p&gt;
  1171. &lt;p&gt;Our past plans suggested we would have Android platform support by this time. However, we have a long way to go, before we can declare Android support. See for yourself:&lt;/p&gt;
  1172. &lt;p&gt;&lt;img alt="Android rendering" src="http://opengamestudio.org/2017-01_mjin-android-gles.png"&gt;&lt;/p&gt;
  1173. &lt;p&gt;Some people would consider this a failure. We don't. We see a chance to start low and jump high!&lt;/p&gt;
  1174. &lt;p&gt;Having only worked with liberal and forgiving desktop environments, Android was a complete surprise for us. Android punished us for everything: memory, resources, graphics. The usual Android response was either a crash, or an empty screen.
  1175. At the same time, such a harsh environment highlighted weak spots in our technologies and helped us see where to go next.&lt;/p&gt;
  1176. &lt;p&gt;This month we start working on iOS platform support, even though we have only scratched Android. Why? Because it's a lot easier to get those red cubes rendered on iOS without polishing Android first. We don't want to spend months polishing Android only to find out later we had to implement certain feature differently so that it works on all supported platforms.&lt;/p&gt;
  1177. &lt;p&gt;And right after we get those cubes rendered on iOS, we start to work on bringing them to Web.&lt;/p&gt;
  1178. &lt;p&gt;&lt;strong&gt;You got it right: we challenge ourselves with support for Android, iOS, and Web this year.&lt;/strong&gt;&lt;/p&gt;
  1179. &lt;p&gt;That's it for describing our plans for 2017.&lt;/p&gt;</content></entry><entry><title>Год испытаний</title><link href="http://opengamestudio.org/the-year-of-challenges-ru.html" rel="alternate"></link><published>2017-01-25T00:00:00+03:00</published><updated>2017-01-25T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2017-01-25:/the-year-of-challenges-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="The year of challenges" src="http://opengamestudio.org/2017-01_the-year-of-challenges.png"&gt;&lt;/p&gt;
  1180. &lt;p&gt;Эта статья содержит наши планы на 2017 год.&lt;/p&gt;
  1181. &lt;p&gt;Наши предыдущие планы предполагали, что сейчас у нас уже будет поддержка платформы Android. Тем не менее, у нас впереди ещё очень много работы, прежде чем мы сможем объявить о поддержке Android. Судите сами:&lt;/p&gt;
  1182. &lt;p&gt;&lt;img alt="Android rendering" src="http://opengamestudio.org/2017-01_mjin-android-gles.png"&gt;&lt;/p&gt;
  1183. &lt;p&gt;Кто-нибудь может посчитать это неудачей. Но не мы. Мы …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="The year of challenges" src="http://opengamestudio.org/2017-01_the-year-of-challenges.png"&gt;&lt;/p&gt;
  1184. &lt;p&gt;Эта статья содержит наши планы на 2017 год.&lt;/p&gt;
  1185. &lt;p&gt;Наши предыдущие планы предполагали, что сейчас у нас уже будет поддержка платформы Android. Тем не менее, у нас впереди ещё очень много работы, прежде чем мы сможем объявить о поддержке Android. Судите сами:&lt;/p&gt;
  1186. &lt;p&gt;&lt;img alt="Android rendering" src="http://opengamestudio.org/2017-01_mjin-android-gles.png"&gt;&lt;/p&gt;
  1187. &lt;p&gt;Кто-нибудь может посчитать это неудачей. Но не мы. Мы видим шанс начать с низкого старта и прыгнуть высоко!&lt;/p&gt;
  1188. &lt;p&gt;Т.к. ранее мы имели опыт работы лишь с либеральным и всё прощающим настольным ПК, Android стал для нас полной неожиданностью. На каждом шагу нас ожидало наказание за фривольное использование памяти, ресурсов, графики. Чаще всего в ответ на наши действия мы получали либо падение приложения, либо пустой экран.
  1189. С другой стороны, такие суровые условия высветили слабые места в наших технологиях и помогли увидеть, куда нам двигаться дальше.&lt;/p&gt;
  1190. &lt;p&gt;В этом месяце мы начинаем работу над поддержкой платформы iOS, хотя мы лишь слегка коснулись платформы Android. Почему? Потому что намного проще отобразить эти красные кубы на iOS без предварительной полировки Android. Мы не хотим потратить месяцы на полировку Android лишь для того, чтобы позже узнать о том, что какой-либо функционал следовало делать иначе для его работы на всех поддерживаемых платформах.&lt;/p&gt;
  1191. &lt;p&gt;Сразу после отображения этих кубов на iOS мы начнём работу над их отображением в Вебе.&lt;/p&gt;
  1192. &lt;p&gt;&lt;strong&gt;Всё верно: нашей целью в этом году является поддержка платформ Android, iOS и Веб.&lt;/strong&gt;&lt;/p&gt;
  1193. &lt;p&gt;На этом мы заканчиваем описание наших планов на 2017 год.&lt;/p&gt;</content></entry><entry><title>Happy 2017</title><link href="http://opengamestudio.org/2017-happy-new-year.html" rel="alternate"></link><published>2016-12-31T00:00:00+03:00</published><updated>2016-12-31T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-12-31:/2017-happy-new-year.html</id><summary type="html">&lt;p&gt;&lt;img alt="Happy new year" src="http://opengamestudio.org/2016-12-31_happy-new-year.png"&gt;&lt;/p&gt;
  1194. &lt;p&gt;Okay. It's been a hard year for everyone in the team. And it's almost over. Praise it ends! Praise the new one!&lt;/p&gt;
  1195. &lt;p&gt;It may seem, that our progress stalled. Three years ago we announced the beginning of a new project (two to be precise), and now we still working on …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Happy new year" src="http://opengamestudio.org/2016-12-31_happy-new-year.png"&gt;&lt;/p&gt;
  1196. &lt;p&gt;Okay. It's been a hard year for everyone in the team. And it's almost over. Praise it ends! Praise the new one!&lt;/p&gt;
  1197. &lt;p&gt;It may seem, that our progress stalled. Three years ago we announced the beginning of a new project (two to be precise), and now we still working on the engine and editor, haven't even started creating the actual game.&lt;/p&gt;
  1198. &lt;p&gt;If you were monitoring our news during the year, you know that we held several live sessions, showing in the real time how to use our tools to create some simple games. Each session was a step in a long road to our goal. While preparing for these live sessions, we added necessary building blocks, that will be needed to create almost any game.&lt;/p&gt;
  1199. &lt;p&gt;Future live sessions and technical previews will add even more, so at some point in future (i hope not very distant), we will have everything we need to sit down and build our planned game from these blocks.&lt;/p&gt;
  1200. &lt;p&gt;So, the project isn't dead; the idea was not thrown away. But there is a lot of work to be done before we can start making the game, and there are only two of us, using our spare time.
  1201. So. You want our game to become a reality? Join us. Together we will rule the galaxy. Or just wait and see. We didn't stop several years ago. We won't stop now.
  1202. After all, there is only one way to create a fine tool (and it's our initial goal if you remember) - we need to use it ourselves.
  1203. We will. Stay tuned.&lt;/p&gt;
  1204. &lt;p&gt;Happy 2017. Let it be simple.&lt;/p&gt;</content></entry><entry><title>Счастливого 2017-го</title><link href="http://opengamestudio.org/2017-happy-new-year-ru.html" rel="alternate"></link><published>2016-12-31T00:00:00+03:00</published><updated>2016-12-31T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-12-31:/2017-happy-new-year-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="Happy new year" src="http://opengamestudio.org/2016-12-31_happy-new-year.png"&gt;&lt;/p&gt;
  1205. &lt;p&gt;Ну вот. Это был тяжелый год для всех в команде. И он почти закончен. Хвала окончанию старого! Хвала наступлению нового!&lt;/p&gt;
  1206. &lt;p&gt;Может показаться, что наш прогресс застопорился. Три года назад мы объявили о начале нового проекта (двух, если быть точным), но до сих пор мы работаем над движком и редактором, даже …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="Happy new year" src="http://opengamestudio.org/2016-12-31_happy-new-year.png"&gt;&lt;/p&gt;
  1207. &lt;p&gt;Ну вот. Это был тяжелый год для всех в команде. И он почти закончен. Хвала окончанию старого! Хвала наступлению нового!&lt;/p&gt;
  1208. &lt;p&gt;Может показаться, что наш прогресс застопорился. Три года назад мы объявили о начале нового проекта (двух, если быть точным), но до сих пор мы работаем над движком и редактором, даже не начали делать ни Shuan, ни Mahjong 2.&lt;/p&gt;
  1209. &lt;p&gt;Если вы следили за новостями в течение года, вы знаете что мы провели несколько "живых сессий", демонстрируя в реальном времени как можно использовать наш инструментарий для создания простой игры. Каждая сессия была шагом в долгом пути к нашей цели. В процессе подготовки к ним, мы добавляли важные элементы, которые будут необходимы для создания любой игры.&lt;/p&gt;
  1210. &lt;p&gt;Будущие сессии и демонстрации добавят даже больше, так что в будущем (надеюсь не слишком отдаленном), у нас будет все необходимое для того чтобы просто сесть и собрать планируемую игру из этих элементов.&lt;/p&gt;
  1211. &lt;p&gt;Так что проект не умер; идея не отброшена. Очень много работы предстоит сделать, прежде чем мы можем начать делать игру. И нас только двое, занимающихся всем этим в свое свободное время.
  1212. Итак, вы хотите, чтобы наша игра стала реальностью? Присоединяйтесь к нам. Вместе мы будем править галактикой. Или можете просто подождать. Мы не бросили все это несколько лет назад. Не станем и сейчас.
  1213. В конце концов, есть только один способ создать годный инструмент (а это наша первоначальная цель, если вы помните) - мы должны использовать его сами.
  1214. Мы будем. Следите за новостями.&lt;/p&gt;
  1215. &lt;p&gt;Счастливого 2017-го. Пусть он будет простым.&lt;/p&gt;</content></entry><entry><title>November 2016 recap</title><link href="http://opengamestudio.org/2016-november-recap.html" rel="alternate"></link><published>2016-12-15T00:00:00+03:00</published><updated>2016-12-15T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-12-15:/2016-november-recap.html</id><summary type="html">&lt;p&gt;&lt;img alt="November recap" src="http://opengamestudio.org/2016-12-15_2016-november-recap.png"&gt;&lt;/p&gt;
  1216. &lt;p&gt;This article describes the start of MJIN library separation into modules.&lt;/p&gt;
  1217. &lt;p&gt;Once we built OpenSceneGraph for Android, it became obvious that some MJIN functionality is not suitable for Android. For example, UIQt provides a basis for OGS Editor UI. Since OGS Editor is a desktop application, we don't need UIQt …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="November recap" src="http://opengamestudio.org/2016-12-15_2016-november-recap.png"&gt;&lt;/p&gt;
  1218. &lt;p&gt;This article describes the start of MJIN library separation into modules.&lt;/p&gt;
  1219. &lt;p&gt;Once we built OpenSceneGraph for Android, it became obvious that some MJIN functionality is not suitable for Android. For example, UIQt provides a basis for OGS Editor UI. Since OGS Editor is a desktop application, we don't need UIQt for Android.&lt;/p&gt;
  1220. &lt;p&gt;We decided to have a look at two approaches to separate MJIN into modules: build-time separation and run-time one.
  1221. &lt;strong&gt;Build-time&lt;/strong&gt; separation means MJIN becomes highly configurable and each platform gets specifically tailored MJIN build.
  1222. &lt;strong&gt;Run-time&lt;/strong&gt; separation means MJIN is divided into smaller libraries that are connected at run-time, which makes it easy to change functionality without rebuilding.&lt;/p&gt;
  1223. &lt;p&gt;&lt;strong&gt;Run-time separation research.&lt;/strong&gt;&lt;/p&gt;
  1224. &lt;p&gt;Since run-time separation has more benefits, we started researching it first.
  1225. The easiest way to achieve it was to use C API, because C ABI rules are much simpler than C++ one's.&lt;/p&gt;
  1226. &lt;p&gt;We created a sample project consisting of the application, library, and plugin.
  1227. &lt;strong&gt;The application&lt;/strong&gt; has been linked to the library and used it to load the plugin.
  1228. &lt;strong&gt;The library&lt;/strong&gt; provided functions to register plugins and call their functions.
  1229. &lt;strong&gt;The plugin&lt;/strong&gt; provided functions for the library and called library functions.&lt;/p&gt;
  1230. &lt;p&gt;The research was successful: the sample project worked correctly under Linux and Windows. However, since MJIN is currently a single large entity, we postponed C API application until we finish build-time separation.&lt;/p&gt;
  1231. &lt;p&gt;&lt;strong&gt;Build-time separation start.&lt;/strong&gt;&lt;/p&gt;
  1232. &lt;p&gt;We extracted the following modules from MJIN:&lt;/p&gt;
  1233. &lt;ul&gt;
  1234. &lt;li&gt;
  1235. &lt;p&gt;Android: provides Java Native Interface (JNI) to MJIN&lt;/p&gt;
  1236. &lt;/li&gt;
  1237. &lt;li&gt;
  1238. &lt;p&gt;Sound: provides access to OpenAL&lt;/p&gt;
  1239. &lt;/li&gt;
  1240. &lt;li&gt;
  1241. &lt;p&gt;UIQt: provides access to Qt UI&lt;/p&gt;
  1242. &lt;/li&gt;
  1243. &lt;/ul&gt;
  1244. &lt;p&gt;Sound and UIQt modules are currently statically linked into MJIN library, while Android module is already a separate library due to JNI requirements.&lt;/p&gt;
  1245. &lt;p&gt;In the coming year, we're going to significantly restructure MJIN so that it suits as many platforms as possible.&lt;/p&gt;
  1246. &lt;p&gt;That's it for describing the start of MJIN library separation into modules.&lt;/p&gt;</content></entry><entry><title>Ноябрь 2016 кратко</title><link href="http://opengamestudio.org/2016-november-recap-ru.html" rel="alternate"></link><published>2016-12-15T00:00:00+03:00</published><updated>2016-12-15T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-12-15:/2016-november-recap-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="November recap" src="http://opengamestudio.org/2016-12-15_2016-november-recap.png"&gt;&lt;/p&gt;
  1247. &lt;p&gt;Эта статья описывает начало разделения библиотеки MJIN на модули.&lt;/p&gt;
  1248. &lt;p&gt;Как только мы собрали OpenSceneGraph для Android, стало очевидно, что часть функционала MJIN не нужна на Android. Например, UIQt - это основа интерфейса Редактора. Раз Редактор - это приложение для ПК, то UIQt не нужен на Android.&lt;/p&gt;
  1249. &lt;p&gt;Мы решили рассмотреть два подхода к …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="November recap" src="http://opengamestudio.org/2016-12-15_2016-november-recap.png"&gt;&lt;/p&gt;
  1250. &lt;p&gt;Эта статья описывает начало разделения библиотеки MJIN на модули.&lt;/p&gt;
  1251. &lt;p&gt;Как только мы собрали OpenSceneGraph для Android, стало очевидно, что часть функционала MJIN не нужна на Android. Например, UIQt - это основа интерфейса Редактора. Раз Редактор - это приложение для ПК, то UIQt не нужен на Android.&lt;/p&gt;
  1252. &lt;p&gt;Мы решили рассмотреть два подхода к разделению MJIN на модули: во время сборки (build-time) и исполнения (run-time).
  1253. Разделение &lt;strong&gt;во время сборки&lt;/strong&gt; означает гибкую систему настроек MJIN, что позволит собирать её различно под каждую платформу.
  1254. Разделение &lt;strong&gt;во время исполнения&lt;/strong&gt; означает разделение MJIN на несколько небольших библиотек с последующим соединением во время исполнения, что позволит легко менять функционал без повторной сборки.&lt;/p&gt;
  1255. &lt;p&gt;&lt;strong&gt;Исследование разделения во время исполнения.&lt;/strong&gt;&lt;/p&gt;
  1256. &lt;p&gt;Т.к. разделение во время исполнения имеет больше преимуществ, мы начали с этого подхода.
  1257. Самый простой способ достичь его заключался в использовании C API, т.к. правила C ABI намного проще правил C++ ABI.&lt;/p&gt;
  1258. &lt;p&gt;Мы создали маленький проект, включающий в себя приложение, библиотеку и плагин.
  1259. &lt;strong&gt;Приложение&lt;/strong&gt; было слинковано с библиотекой и использовало её для загрузки плагина.
  1260. &lt;strong&gt;Библиотека&lt;/strong&gt; предоставляла функции для регистрации плагина и вызывала его функции.
  1261. &lt;strong&gt;Плагин&lt;/strong&gt; предоставлял функции для библиотеки и вызывал её функции.&lt;/p&gt;
  1262. &lt;p&gt;Исследование прошло на ура: проект работал в полном соответствии с нашими ожиданиями на Linux и Windows.
  1263. Тем не менее, т.к. MJIN на текущий момент является большой монолитной сущностью, мы отложили применение C API до окончания разделения во время сборки.&lt;/p&gt;
  1264. &lt;p&gt;&lt;strong&gt;Начало разделения во время сборки.&lt;/strong&gt;&lt;/p&gt;
  1265. &lt;p&gt;Мы выделили следующие модули из MJIN:&lt;/p&gt;
  1266. &lt;ul&gt;
  1267. &lt;li&gt;
  1268. &lt;p&gt;Android: предоставляет Java Native Interface (JNI) к MJIN&lt;/p&gt;
  1269. &lt;/li&gt;
  1270. &lt;li&gt;
  1271. &lt;p&gt;Sound: предоставляет доступ к OpenAL&lt;/p&gt;
  1272. &lt;/li&gt;
  1273. &lt;li&gt;
  1274. &lt;p&gt;UIQt: предоставляет доступ к Qt&lt;/p&gt;
  1275. &lt;/li&gt;
  1276. &lt;/ul&gt;
  1277. &lt;p&gt;Модули Sound и UIQt на текущий момент статически линкуются в MJIN, тогда как модуль Android линкуется динамически из-за ограничений JNI.&lt;/p&gt;
  1278. &lt;p&gt;В следующем году мы изменим структуру MJIN так, чтобы её можно было легче собрать под разные платформы.&lt;/p&gt;
  1279. &lt;p&gt;На этом мы заканчиваем статью о начале разделения библиотеки MJIN на модули.&lt;/p&gt;</content></entry><entry><title>October 2016 recap</title><link href="http://opengamestudio.org/2016-october-recap.html" rel="alternate"></link><published>2016-11-19T00:00:00+03:00</published><updated>2016-11-19T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-11-19:/2016-october-recap.html</id><summary type="html">&lt;p&gt;&lt;img alt="October recap" src="http://opengamestudio.org/2016-11-19_2016-october-recap.png"&gt;&lt;/p&gt;
  1280. &lt;p&gt;This article describes how we spent a month building OpenSceneGraph (OSG) for Android: the first attempt to build OSG, the search for OSG alternatives, and the success in building OSG.&lt;/p&gt;
  1281. &lt;p&gt;&lt;strong&gt;First attempt to build OSG.&lt;/strong&gt;&lt;/p&gt;
  1282. &lt;p&gt;Having no prior knowledge of Android development, we grabbed the latest Android Studio and started …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="October recap" src="http://opengamestudio.org/2016-11-19_2016-october-recap.png"&gt;&lt;/p&gt;
  1283. &lt;p&gt;This article describes how we spent a month building OpenSceneGraph (OSG) for Android: the first attempt to build OSG, the search for OSG alternatives, and the success in building OSG.&lt;/p&gt;
  1284. &lt;p&gt;&lt;strong&gt;First attempt to build OSG.&lt;/strong&gt;&lt;/p&gt;
  1285. &lt;p&gt;Having no prior knowledge of Android development, we grabbed the latest Android Studio and started doing beginner tutorials.
  1286. We passed Java part pretty fast. Everything worked out of the box. Then came C++ part and related problems.&lt;/p&gt;
  1287. &lt;p&gt;&lt;strong&gt;CMake. &lt;/strong&gt;To work with C++, Android Studio uses custom CMake, which conflicts with the system one. This was a clear indication that we had to set up a separate development environment specifically for Android.&lt;/p&gt;
  1288. &lt;p&gt;&lt;strong&gt;KVM. &lt;/strong&gt;We got Ubuntu under VirtualBox installed. All went fine until we tried to use Android Emulator. Turned out, VirtualBox could not run Android Emulator, because a virtual machine cannot provide kernel virtualization inside already virtualized environment.&lt;/p&gt;
  1289. &lt;p&gt;&lt;strong&gt;Chroot for Android. &lt;/strong&gt;Since we had a successful experience with chroot to build OGS Editor before, we decided to place Android development environment into chroot. With minor tweaking, we could finally run Android Emulator and build C++ project.&lt;/p&gt;
  1290. &lt;p&gt;&lt;strong&gt;OSG. &lt;/strong&gt;Building OSG seemed like a piece of cake at the time. However, all we got was a crash. Thinking that we got it wrong the first time, we tried to rebuild OSG once again. And the same crash again.
  1291. Searching for the problem did not reveal any hint.
  1292. Nobody helped us at the OSG mailing list.&lt;/p&gt;
  1293. &lt;p&gt;We were in despair.&lt;/p&gt;
  1294. &lt;p&gt;&lt;strong&gt;The search for OSG alternatives.&lt;/strong&gt;&lt;/p&gt;
  1295. &lt;p&gt;Since OSG community did not help us, we decided to search for an alternative open source project to fit our Android needs (and may be more).&lt;/p&gt;
  1296. &lt;p&gt;And we found it: &lt;a href="http://babylonhx.gamestudiohx.com/"&gt;BabylonHX&lt;/a&gt;. The home page looked awesome: it rendered WebGL in the background!
  1297. We thought we finally found the gem we were looking for. However, the example on the home page simply did not work.&lt;/p&gt;
  1298. &lt;p&gt;You can probably understand our feelings at the time.&lt;/p&gt;
  1299. &lt;p&gt;&lt;strong&gt;The success in building OSG.&lt;/strong&gt;&lt;/p&gt;
  1300. &lt;p&gt;We realized nobody would make OSG work under Android for us. We had to do it ourselves.&lt;/p&gt;
  1301. &lt;p&gt;Since &lt;a href="http://www.openscenegraph.org/index.php/documentation/platform-specifics/android/178-building-openscenegraph-for-android-3-4"&gt;OSG 3.4 document&lt;/a&gt; on building for Android was very short, we no longer trusted it and headed to &lt;a href="http://www.openscenegraph.org/index.php/documentation/platform-specifics/android/44-building-openscenegraph-for-android-3-0-3-0-1"&gt;original OSG 3.0 document&lt;/a&gt;.
  1302. While following it, we faced a dead link to third party dependencies.
  1303. The search for an alternative download link lead us to a &lt;a href="https://xinyustudio.wordpress.com/2013/09/24/install-osg-for-android-on-ubuntu-13-04-step-by-step-tutorials/"&gt;2013 tutorial&lt;/a&gt; on building OSG 3.0 for Android.&lt;/p&gt;
  1304. &lt;p&gt;After following the tutorial, we finally got OSG to run under Android!
  1305. But there was a nuance: both OSG and Android tools used in the tutorial were ancient.
  1306. In a few days, we gradually updated both OSG and Android tools to their latest versions.&lt;/p&gt;
  1307. &lt;p&gt;During the update process, we learned two things that prevented us from having OSG to work in the first place:&lt;/p&gt;
  1308. &lt;ul&gt;
  1309. &lt;li&gt;Android API headers changed in NDK r12&lt;/li&gt;
  1310. &lt;li&gt;OSG only works as a static library under Android&lt;/li&gt;
  1311. &lt;/ul&gt;
  1312. &lt;p&gt;That's it for describing how we spent the month building OSG for Android: the first attempt to build OSG, the search for OSG alternatives, and the success in building OSG.&lt;/p&gt;</content></entry><entry><title>Октябрь 2016 кратко</title><link href="http://opengamestudio.org/2016-october-recap-ru.html" rel="alternate"></link><published>2016-11-19T00:00:00+03:00</published><updated>2016-11-19T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-11-19:/2016-october-recap-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="October recap" src="http://opengamestudio.org/2016-11-19_2016-october-recap.png"&gt;&lt;/p&gt;
  1313. &lt;p&gt;Эта статья описывает, как мы потратили месяц на сборку OpenSceneGraph (OSG) под Android: первая попытка собрать OSG, поиск альтернатив OSG и успех в сборке OSG.&lt;/p&gt;
  1314. &lt;p&gt;&lt;strong&gt;Первая попытка собрать OSG.&lt;/strong&gt;&lt;/p&gt;
  1315. &lt;p&gt;Не имея опыта разработки под Android, мы взяли последнюю версию Android Studio и начали проходить самоучители для начинающих.
  1316. Java далась легко …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="October recap" src="http://opengamestudio.org/2016-11-19_2016-october-recap.png"&gt;&lt;/p&gt;
  1317. &lt;p&gt;Эта статья описывает, как мы потратили месяц на сборку OpenSceneGraph (OSG) под Android: первая попытка собрать OSG, поиск альтернатив OSG и успех в сборке OSG.&lt;/p&gt;
  1318. &lt;p&gt;&lt;strong&gt;Первая попытка собрать OSG.&lt;/strong&gt;&lt;/p&gt;
  1319. &lt;p&gt;Не имея опыта разработки под Android, мы взяли последнюю версию Android Studio и начали проходить самоучители для начинающих.
  1320. Java далась легко. Всё работало из коробки. Затем наступил черёд C++ и проблем.&lt;/p&gt;
  1321. &lt;p&gt;&lt;strong&gt;CMake. &lt;/strong&gt;Android Studio для работы с C++ использует собственную версию CMake, которая конфликтует с системной. Для нас это было явным сигналом о необходимости подготовить отдельное окружение разработки специально под Android.&lt;/p&gt;
  1322. &lt;p&gt;&lt;strong&gt;KVM. &lt;/strong&gt;Мы установили Ubuntu на VirtualBox. Всё шло замечательно до того момента, пока мы не запустили эмулятор Android. Оказалось, что VirtualBox не может запустить эмулятор, т.к. виртуальная машина не предоставляет виртуализацию внутри уже виртуализированного окружения.&lt;/p&gt;
  1323. &lt;p&gt;&lt;strong&gt;Chroot для Android. &lt;/strong&gt;Вспомнив о положительном опыте работы с chroot для сборки OGS Editor, мы решили поместить окружение разработки Android в chroot. После небольших настроек мы сумели запустить эмулятор Android и собрать проект C++.&lt;/p&gt;
  1324. &lt;p&gt;&lt;strong&gt;OSG. &lt;/strong&gt;К этому моменту мы считали, что собрать OSG не составит труда, но не тут-то было. Всё, что мы получили, - это падение.
  1325. Предположив, что мы ошиблись где-то при первой сборке, мы решили пересобрать OSG ещё раз. И снова получили ту же ошибку.
  1326. Поиск решения проблемы не дал результатов.
  1327. Никто не помог нам в списке рассылок OSG.&lt;/p&gt;
  1328. &lt;p&gt;Мы были в отчаянии.&lt;/p&gt;
  1329. &lt;p&gt;&lt;strong&gt;Поиск альтернатив OSG.&lt;/strong&gt;&lt;/p&gt;
  1330. &lt;p&gt;Раз сообщество OSG нам не помогло, мы решили поискать альтернативный открытый проект, который мог решить наши задачи на Android (и, возможно, на других платформах).&lt;/p&gt;
  1331. &lt;p&gt;Такой проект мы нашли: &lt;a href="http://babylonhx.gamestudiohx.com/"&gt;BabylonHX&lt;/a&gt;. Домашняя страница выглядела замечательно: она отображала WebGL в фоне!
  1332. Промелькнула мысль, что мы наконец нашли алмаз. К сожалению, пример на домашней странице просто не работал.&lt;/p&gt;
  1333. &lt;p&gt;Думаем, вы понимаете наши чувства на тот момент.&lt;/p&gt;
  1334. &lt;p&gt;&lt;strong&gt;Успех в сборке OSG.&lt;/strong&gt;&lt;/p&gt;
  1335. &lt;p&gt;Мы осознали, что никто за нас не запустит OSG на Android. Нужно было сделать это самостоятельно.&lt;/p&gt;
  1336. &lt;p&gt;Потеряв доверие к очень короткой &lt;a href="http://www.openscenegraph.org/index.php/documentation/platform-specifics/android/178-building-openscenegraph-for-android-3-4"&gt;документации OSG 3.4&lt;/a&gt; по сборке для Android, мы решили использовать &lt;a href="http://www.openscenegraph.org/index.php/documentation/platform-specifics/android/44-building-openscenegraph-for-android-3-0-3-0-1"&gt;первоначальную документацию OSG 3.0&lt;/a&gt;.
  1337. В ходе следования ей мы наткнулись на мёртвую ссылку, которая должна была содержать зависимости.
  1338. Поиск альтернативной ссылки вывел нас на &lt;a href="https://xinyustudio.wordpress.com/2013/09/24/install-osg-for-android-on-ubuntu-13-04-step-by-step-tutorials/"&gt;самоучитель 2013 года&lt;/a&gt; по сборке OSG 3.0 для Android.&lt;/p&gt;
  1339. &lt;p&gt;После прохождения самоучителя мы наконец смогли запустить OSG под Android!
  1340. Тем не менее, был нюанс: используемые в самоучителе версии OSG и средств разработки Android были древними.
  1341. В течение нескольких дней мы постепенно довели версии OSG и средств разработки Android до последних.&lt;/p&gt;
  1342. &lt;p&gt;В ходе этого обновления мы узнали о двух вещах, помешавших нам запустить OSG с первого раза:&lt;/p&gt;
  1343. &lt;ul&gt;
  1344. &lt;li&gt;Изменение заголовков Android API в NDK r12&lt;/li&gt;
  1345. &lt;li&gt;OSG работает под Android лишь в виде статической библиотеки&lt;/li&gt;
  1346. &lt;/ul&gt;
  1347. &lt;p&gt;На этом мы заканчиваем описание того, как мы потратили месяц на сборку OSG под Android: первая попытка собрать OSG, поиск альтернатив OSG и успех в сборке OSG.&lt;/p&gt;</content></entry><entry><title>Technology showcases</title><link href="http://opengamestudio.org/2016-tech-showcases.html" rel="alternate"></link><published>2016-10-31T00:00:00+03:00</published><updated>2016-10-31T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-10-31:/2016-tech-showcases.html</id><summary type="html">&lt;p&gt;&lt;img alt="TechShowcases" src="http://opengamestudio.org/2016-10-31_tech-showcases.png"&gt;&lt;/p&gt;
  1348. &lt;p&gt;In this article, we take another look at 2015-2016 live sessions' format and introduce a new showcase format for 2017.&lt;/p&gt;
  1349. &lt;p&gt;&lt;strong&gt;2015 and 2016: live sessions.&lt;/strong&gt;&lt;/p&gt;
  1350. &lt;p&gt;As you know, we use live sessions to show the state of our technology and create a small functional game from scratch.
  1351. We have conducted …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="TechShowcases" src="http://opengamestudio.org/2016-10-31_tech-showcases.png"&gt;&lt;/p&gt;
  1352. &lt;p&gt;In this article, we take another look at 2015-2016 live sessions' format and introduce a new showcase format for 2017.&lt;/p&gt;
  1353. &lt;p&gt;&lt;strong&gt;2015 and 2016: live sessions.&lt;/strong&gt;&lt;/p&gt;
  1354. &lt;p&gt;As you know, we use live sessions to show the state of our technology and create a small functional game from scratch.
  1355. We have conducted four live sessions in the past year, which gave birth to the following small games:
  1356. &lt;table&gt;
  1357. &lt;tr&gt;
  1358. &lt;th&gt;&lt;strong&gt;№&lt;/strong&gt;&lt;/th&gt;
  1359. &lt;th&gt;&lt;strong&gt;Created game&lt;/strong&gt;&lt;/th&gt;
  1360. &lt;th&gt;&lt;strong&gt;Live session date&lt;/strong&gt;&lt;/th&gt;
  1361. &lt;/tr&gt;
  1362. &lt;tr&gt;
  1363. &lt;td&gt;1&lt;/td&gt;
  1364. &lt;td&gt;Whac-a-mole&lt;/td&gt;
  1365. &lt;td&gt;November 2015&lt;/td&gt;
  1366. &lt;/tr&gt;
  1367. &lt;tr&gt;
  1368. &lt;td&gt;2&lt;/td&gt;
  1369. &lt;td&gt;Rolling ball&lt;/td&gt;
  1370. &lt;td&gt;February 2016&lt;/td&gt;
  1371. &lt;/tr&gt;
  1372. &lt;tr&gt;
  1373. &lt;td&gt;3&lt;/td&gt;
  1374. &lt;td&gt;Domino&lt;/td&gt;
  1375. &lt;td&gt;May 2016&lt;/td&gt;
  1376. &lt;/tr&gt;
  1377. &lt;tr&gt;
  1378. &lt;td&gt;4&lt;/td&gt;
  1379. &lt;td&gt;Mahjong Solitaire&lt;/td&gt;
  1380. &lt;td&gt;September 2016&lt;/td&gt;
  1381. &lt;/tr&gt;
  1382. &lt;/table&gt;&lt;/p&gt;
  1383. &lt;p&gt;We spent four months to prepare for these live sessions.
  1384. It has been an extremely useful experience for us. However, 2017 will have only 2 live sessions.
  1385. Why? We want to spend more time on actual development!&lt;/p&gt;
  1386. &lt;p&gt;&lt;strong&gt;2017: live sessions + technical previews.&lt;/strong&gt;&lt;/p&gt;
  1387. &lt;p&gt;Starting next year, we will be doing technical previews twice a year. A technical preview is another way to show the state of our technology, but without creating new games and conducting live sessions.&lt;/p&gt;
  1388. &lt;p&gt;Here's an approximate schedule of technical previews and live sessions for 2017:
  1389. &lt;table&gt;
  1390. &lt;tr&gt;
  1391. &lt;th&gt;&lt;strong&gt;№&lt;/strong&gt;&lt;/th&gt;
  1392. &lt;th&gt;&lt;strong&gt;Month&lt;/strong&gt;&lt;/th&gt;
  1393. &lt;th&gt;&lt;strong&gt;Showcase type&lt;/strong&gt;&lt;/th&gt;
  1394. &lt;th&gt;&lt;strong&gt;Topic&lt;/strong&gt;&lt;/th&gt;
  1395. &lt;/tr&gt;
  1396. &lt;tr&gt;
  1397. &lt;td&gt;1&lt;/td&gt;
  1398. &lt;td&gt;January&lt;/td&gt;
  1399. &lt;td&gt;Technical preview&lt;/td&gt;
  1400. &lt;td&gt;Android platform support&lt;/td&gt;
  1401. &lt;/tr&gt;
  1402. &lt;tr&gt;
  1403. &lt;td&gt;2&lt;/td&gt;
  1404. &lt;td&gt;April&lt;/td&gt;
  1405. &lt;td&gt;Live session&lt;/td&gt;
  1406. &lt;td&gt;Android game creation&lt;/td&gt;
  1407. &lt;/tr&gt;
  1408. &lt;tr&gt;
  1409. &lt;td&gt;3&lt;/td&gt;
  1410. &lt;td&gt;July&lt;/td&gt;
  1411. &lt;td&gt;Technical preview&lt;/td&gt;
  1412. &lt;td&gt;To be announced&lt;/td&gt;
  1413. &lt;/tr&gt;
  1414. &lt;tr&gt;
  1415. &lt;td&gt;4&lt;/td&gt;
  1416. &lt;td&gt;October&lt;/td&gt;
  1417. &lt;td&gt;Live session&lt;/td&gt;
  1418. &lt;td&gt;To be announced&lt;/td&gt;
  1419. &lt;/tr&gt;
  1420. &lt;/table&gt;&lt;/p&gt;
  1421. &lt;p&gt;That's it for taking another look at 2015-2016 live sessions' format and introducing the new showcase format for 2017.&lt;/p&gt;</content></entry><entry><title>Демонстрации технологий</title><link href="http://opengamestudio.org/2016-tech-showcases-ru.html" rel="alternate"></link><published>2016-10-31T00:00:00+03:00</published><updated>2016-10-31T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-10-31:/2016-tech-showcases-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="TechShowcases" src="http://opengamestudio.org/2016-10-31_tech-showcases.png"&gt;&lt;/p&gt;
  1422. &lt;p&gt;Сегодня мы ещё раз взглянем на формат демонстраций в 2015-2016 годах, а также сообщим о новом формате 2017-го.&lt;/p&gt;
  1423. &lt;p&gt;&lt;strong&gt;2015 и 2016: демонстрации в прямом эфире.&lt;/strong&gt;&lt;/p&gt;
  1424. &lt;p&gt;Как вы знаете, в ходе демонстраций мы в прямом эфире показываем состояние наших технологий и собираем небольшую работающую игру с нуля.
  1425. За прошедший год мы …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="TechShowcases" src="http://opengamestudio.org/2016-10-31_tech-showcases.png"&gt;&lt;/p&gt;
  1426. &lt;p&gt;Сегодня мы ещё раз взглянем на формат демонстраций в 2015-2016 годах, а также сообщим о новом формате 2017-го.&lt;/p&gt;
  1427. &lt;p&gt;&lt;strong&gt;2015 и 2016: демонстрации в прямом эфире.&lt;/strong&gt;&lt;/p&gt;
  1428. &lt;p&gt;Как вы знаете, в ходе демонстраций мы в прямом эфире показываем состояние наших технологий и собираем небольшую работающую игру с нуля.
  1429. За прошедший год мы провели 4 демонстрации в прямом эфире, в ходе которых создали следующие небольшие игры:
  1430. &lt;table&gt;
  1431. &lt;tr&gt;
  1432. &lt;th&gt;&lt;strong&gt;№&lt;/strong&gt;&lt;/th&gt;
  1433. &lt;th&gt;&lt;strong&gt;Созданная игра&lt;/strong&gt;&lt;/th&gt;
  1434. &lt;th&gt;&lt;strong&gt;Дата демонстрации в прямом эфире&lt;/strong&gt;&lt;/th&gt;
  1435. &lt;/tr&gt;
  1436. &lt;tr&gt;
  1437. &lt;td&gt;1&lt;/td&gt;
  1438. &lt;td&gt;Поймай крота&lt;/td&gt;
  1439. &lt;td&gt;Ноябрь 2015&lt;/td&gt;
  1440. &lt;/tr&gt;
  1441. &lt;tr&gt;
  1442. &lt;td&gt;2&lt;/td&gt;
  1443. &lt;td&gt;Катящийся мяч&lt;/td&gt;
  1444. &lt;td&gt;Февраль 2016&lt;/td&gt;
  1445. &lt;/tr&gt;
  1446. &lt;tr&gt;
  1447. &lt;td&gt;3&lt;/td&gt;
  1448. &lt;td&gt;Домино&lt;/td&gt;
  1449. &lt;td&gt;Май 2016&lt;/td&gt;
  1450. &lt;/tr&gt;
  1451. &lt;tr&gt;
  1452. &lt;td&gt;4&lt;/td&gt;
  1453. &lt;td&gt;Пасьянс Маджонг&lt;/td&gt;
  1454. &lt;td&gt;Сентябрь 2016&lt;/td&gt;
  1455. &lt;/tr&gt;
  1456. &lt;/table&gt;&lt;/p&gt;
  1457. &lt;p&gt;На подготовку ко всем 4-м демонстрациям у нас ушло 4 месяца.
  1458. Это был очень полезный для нас опыт. Тем не менее, в 2017-м году мы ограничимся лишь двумя такими демонстрациями.
  1459. Почему? Потому что мы будем тратить больше времени непосредственно на разработку!&lt;/p&gt;
  1460. &lt;p&gt;&lt;strong&gt;2017: демонстрации в прямом эфире + технические анонсы.&lt;/strong&gt;&lt;/p&gt;
  1461. &lt;p&gt;Место двух демонстраций займут технические анонсы. Технический анонс - это тоже демонстрация прогресса наших технологий, но без создания игр в прямом эфире.&lt;/p&gt;
  1462. &lt;p&gt;Примерный календарь технических анонсов и демонстраций на 2017-й год выглядит следующим образом:
  1463. &lt;table&gt;
  1464. &lt;tr&gt;
  1465. &lt;th&gt;&lt;strong&gt;№&lt;/strong&gt;&lt;/th&gt;
  1466. &lt;th&gt;&lt;strong&gt;Месяц&lt;/strong&gt;&lt;/th&gt;
  1467. &lt;th&gt;&lt;strong&gt;Вид демонстрации&lt;/strong&gt;&lt;/th&gt;
  1468. &lt;th&gt;&lt;strong&gt;Тема&lt;/strong&gt;&lt;/th&gt;
  1469. &lt;/tr&gt;
  1470. &lt;tr&gt;
  1471. &lt;td&gt;1&lt;/td&gt;
  1472. &lt;td&gt;Январь&lt;/td&gt;
  1473. &lt;td&gt;Технический анонс&lt;/td&gt;
  1474. &lt;td&gt;Поддержка платформы Android&lt;/td&gt;
  1475. &lt;/tr&gt;
  1476. &lt;tr&gt;
  1477. &lt;td&gt;2&lt;/td&gt;
  1478. &lt;td&gt;Апрель&lt;/td&gt;
  1479. &lt;td&gt;Демонстрация в прямом эфире&lt;/td&gt;
  1480. &lt;td&gt;Создание игры для Android&lt;/td&gt;
  1481. &lt;/tr&gt;
  1482. &lt;tr&gt;
  1483. &lt;td&gt;3&lt;/td&gt;
  1484. &lt;td&gt;Июль&lt;/td&gt;
  1485. &lt;td&gt;Технический анонс&lt;/td&gt;
  1486. &lt;td&gt;Будет объявлено позднее&lt;/td&gt;
  1487. &lt;/tr&gt;
  1488. &lt;tr&gt;
  1489. &lt;td&gt;4&lt;/td&gt;
  1490. &lt;td&gt;Октябрь&lt;/td&gt;
  1491. &lt;td&gt;Демонстрация в прямом эфире&lt;/td&gt;
  1492. &lt;td&gt;Будет объявлено позднее&lt;/td&gt;
  1493. &lt;/tr&gt;
  1494. &lt;/table&gt;&lt;/p&gt;
  1495. &lt;p&gt;На этом мы заканчиваем рассказ о формате демонстраций в 2015-2016 годах, а также о новом формате 2017-го.&lt;/p&gt;</content></entry><entry><title>September 2016 recap</title><link href="http://opengamestudio.org/2016-september-recap.html" rel="alternate"></link><published>2016-10-11T00:00:00+03:00</published><updated>2016-10-11T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-10-11:/2016-september-recap.html</id><summary type="html">&lt;p&gt;&lt;img alt="September recap" src="http://opengamestudio.org/2016-10-11_september-recap.png"&gt;&lt;/p&gt;
  1496. &lt;p&gt;This article explains September 2016 live session stages: draft, rehearsal, live session itself, and publishing.&lt;/p&gt;
  1497. &lt;p&gt;Even though live session takes only a few hours, we devote a whole month to prepare for it. Let's have a look at live session stages in detail.&lt;/p&gt;
  1498. &lt;ol&gt;
  1499. &lt;li&gt;
  1500. &lt;p&gt;&lt;strong&gt;Draft.&lt;/strong&gt; Game creation for the first time …&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="September recap" src="http://opengamestudio.org/2016-10-11_september-recap.png"&gt;&lt;/p&gt;
  1501. &lt;p&gt;This article explains September 2016 live session stages: draft, rehearsal, live session itself, and publishing.&lt;/p&gt;
  1502. &lt;p&gt;Even though live session takes only a few hours, we devote a whole month to prepare for it. Let's have a look at live session stages in detail.&lt;/p&gt;
  1503. &lt;ol&gt;
  1504. &lt;li&gt;
  1505. &lt;p&gt;&lt;strong&gt;Draft.&lt;/strong&gt; Game creation for the first time.&lt;/p&gt;
  1506. &lt;p&gt;Purposes:&lt;/p&gt;
  1507. &lt;ul&gt;
  1508. &lt;li&gt;test our technologies and fix major bugs;&lt;/li&gt;
  1509. &lt;li&gt;discover usability issues to fix in the next development iteration;&lt;/li&gt;
  1510. &lt;li&gt;list exact steps to reproduce the game later;&lt;/li&gt;
  1511. &lt;li&gt;create draft version of the game assets (models, textures, sounds, scripts).&lt;/li&gt;
  1512. &lt;/ul&gt;
  1513. &lt;p&gt;Upon stage completion, we announce live session date and show you the game preview.&lt;/p&gt;
  1514. &lt;/li&gt;
  1515. &lt;li&gt;
  1516. &lt;p&gt;&lt;strong&gt;Rehearsal.&lt;/strong&gt; Game recreation.&lt;/p&gt;
  1517. &lt;p&gt;Purposes:&lt;/p&gt;
  1518. &lt;ul&gt;
  1519. &lt;li&gt;make sure we have no major bugs left;&lt;/li&gt;
  1520. &lt;li&gt;record the whole process of the game creation;&lt;/li&gt;
  1521. &lt;li&gt;create final game assets.&lt;/li&gt;
  1522. &lt;/ul&gt;
  1523. &lt;p&gt;This is 99% the game we publish later.&lt;/p&gt;
  1524. &lt;/li&gt;
  1525. &lt;li&gt;
  1526. &lt;p&gt;&lt;strong&gt;Live session.&lt;/strong&gt; Reassembling the game live in front of you.&lt;/p&gt;
  1527. &lt;p&gt;Purposes:&lt;/p&gt;
  1528. &lt;ul&gt;
  1529. &lt;li&gt;show how easy it is to create a game;&lt;/li&gt;
  1530. &lt;li&gt;walk you through nuances of game creation;&lt;/li&gt;
  1531. &lt;li&gt;get feedback from you;&lt;/li&gt;
  1532. &lt;li&gt;answer your questions.&lt;/li&gt;
  1533. &lt;/ul&gt;
  1534. &lt;p&gt;We take game assets from the rehearsal and use them to quickly reassemble the game in just a few hours.&lt;/p&gt;
  1535. &lt;/li&gt;
  1536. &lt;li&gt;
  1537. &lt;p&gt;&lt;strong&gt;Publishing.&lt;/strong&gt; The release of our technologies' last version, live session materials, and stand alone game.&lt;/p&gt;
  1538. &lt;/li&gt;
  1539. &lt;/ol&gt;
  1540. &lt;p&gt;That's it for explaining September 2016 live session stages: draft, rehearsal, live session itself, and publishing.&lt;/p&gt;</content></entry><entry><title>Сентябрь 2016 кратко</title><link href="http://opengamestudio.org/2016-september-recap-ru.html" rel="alternate"></link><published>2016-10-11T00:00:00+03:00</published><updated>2016-10-11T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-10-11:/2016-september-recap-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="September recap" src="http://opengamestudio.org/2016-10-11_september-recap.png"&gt;&lt;/p&gt;
  1541. &lt;p&gt;Эта статья описывает стадии по подготовке и проведению прямого эфира сентября 2016: черновик, репетиция, прямой эфир и публикация.&lt;/p&gt;
  1542. &lt;p&gt;Несмотря на то, что сам прямой эфир длится лишь несколько часов, мы готовимся к нему целый месяц. Рассмотрим каждую стадию прямого эфира подробнее.&lt;/p&gt;
  1543. &lt;ol&gt;
  1544. &lt;li&gt;
  1545. &lt;p&gt;&lt;strong&gt;Черновик.&lt;/strong&gt; Создание игры в первый раз.&lt;/p&gt;
  1546. &lt;p&gt;Цели:&lt;/p&gt;
  1547. &lt;ul&gt;
  1548. &lt;li&gt;проверить наши …&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="September recap" src="http://opengamestudio.org/2016-10-11_september-recap.png"&gt;&lt;/p&gt;
  1549. &lt;p&gt;Эта статья описывает стадии по подготовке и проведению прямого эфира сентября 2016: черновик, репетиция, прямой эфир и публикация.&lt;/p&gt;
  1550. &lt;p&gt;Несмотря на то, что сам прямой эфир длится лишь несколько часов, мы готовимся к нему целый месяц. Рассмотрим каждую стадию прямого эфира подробнее.&lt;/p&gt;
  1551. &lt;ol&gt;
  1552. &lt;li&gt;
  1553. &lt;p&gt;&lt;strong&gt;Черновик.&lt;/strong&gt; Создание игры в первый раз.&lt;/p&gt;
  1554. &lt;p&gt;Цели:&lt;/p&gt;
  1555. &lt;ul&gt;
  1556. &lt;li&gt;проверить наши технологии и исправить основные ошибки;&lt;/li&gt;
  1557. &lt;li&gt;узнать о неудобствах использования технологий, чтобы исправить их в следующей итерации разработки;&lt;/li&gt;
  1558. &lt;li&gt;перечислить точные шаги для воссоздания игры позже;&lt;/li&gt;
  1559. &lt;li&gt;создать черновой вариант ресурсов игры (модели, текстуры, звуки, скрипты).&lt;/li&gt;
  1560. &lt;/ul&gt;
  1561. &lt;p&gt;После завершения стадии мы объявляем о дате прямого эфира и показываем примерный вид игры.&lt;/p&gt;
  1562. &lt;/li&gt;
  1563. &lt;li&gt;
  1564. &lt;p&gt;&lt;strong&gt;Репетиция.&lt;/strong&gt; Повторное создание игры.&lt;/p&gt;
  1565. &lt;p&gt;Цели:&lt;/p&gt;
  1566. &lt;ul&gt;
  1567. &lt;li&gt;убедиться в отсутствии основных ошибок;&lt;/li&gt;
  1568. &lt;li&gt;записать полный процесс создания игры;&lt;/li&gt;
  1569. &lt;li&gt;создать финальный вариант ресурсов игры.&lt;/li&gt;
  1570. &lt;/ul&gt;
  1571. &lt;p&gt;Это 99% публикуемой позже игры.&lt;/p&gt;
  1572. &lt;/li&gt;
  1573. &lt;li&gt;
  1574. &lt;p&gt;&lt;strong&gt;Прямой эфир.&lt;/strong&gt; Воссоздание игры в прямом эфире.&lt;/p&gt;
  1575. &lt;p&gt;Цели:&lt;/p&gt;
  1576. &lt;ul&gt;
  1577. &lt;li&gt;показать простоту создания игр;&lt;/li&gt;
  1578. &lt;li&gt;объяснить нюансы создания игр;&lt;/li&gt;
  1579. &lt;li&gt;получить обратную связь от вас;&lt;/li&gt;
  1580. &lt;li&gt;ответить на ваши вопросы.&lt;/li&gt;
  1581. &lt;/ul&gt;
  1582. &lt;p&gt;Мы используем ресурсы из репетиции, чтобы быстро воссоздать игру за считанные часы.&lt;/p&gt;
  1583. &lt;/li&gt;
  1584. &lt;li&gt;
  1585. &lt;p&gt;&lt;strong&gt;Публикация.&lt;/strong&gt; Выпуск последней версии наших технологий, материалов прямого эфира и самостоятельной игры.&lt;/p&gt;
  1586. &lt;/li&gt;
  1587. &lt;/ol&gt;
  1588. &lt;p&gt;На этом мы заканчиваем описание стадий по подготовке и проведению прямого эфира сентября 2016: черновик, репетиция, прямой эфир и публикация.&lt;/p&gt;</content></entry><entry><title>OGS Editor 0.10 and live session materials</title><link href="http://opengamestudio.org/ogs-editor-0.10.html" rel="alternate"></link><published>2016-10-03T00:00:00+03:00</published><updated>2016-10-03T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-10-03:/ogs-editor-0.10.html</id><summary type="html">&lt;p&gt;&lt;img alt="ogs-editor-0.10" src="http://opengamestudio.org/2016-10-03_ogs-editor-0.10.png"&gt;&lt;/p&gt;
  1589. &lt;p&gt;Note: we won't release 0.10 for macOS due to technical difficulties with the build system. macOS support will be back for 0.11.&lt;/p&gt;
  1590. &lt;ul&gt;
  1591. &lt;li&gt;&lt;strong&gt;OGS Editor 0.10&lt;/strong&gt; &lt;a href="https://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/51_2016-10-01_06-39-48_0.10.0/"&gt;is available at SourceForge&lt;/a&gt;. Simply unpack the archive and launch the run script.&lt;/li&gt;
  1592. &lt;li&gt;&lt;strong&gt;Mahjong Solitaire game&lt;/strong&gt; &lt;a href="https://sourceforge.net/projects/osrpgcreation/files/Games/MahjongSolitaire/"&gt;is available at SourceForge&lt;/a&gt;, too. Simply …&lt;/li&gt;&lt;/ul&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="ogs-editor-0.10" src="http://opengamestudio.org/2016-10-03_ogs-editor-0.10.png"&gt;&lt;/p&gt;
  1593. &lt;p&gt;Note: we won't release 0.10 for macOS due to technical difficulties with the build system. macOS support will be back for 0.11.&lt;/p&gt;
  1594. &lt;ul&gt;
  1595. &lt;li&gt;&lt;strong&gt;OGS Editor 0.10&lt;/strong&gt; &lt;a href="https://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/51_2016-10-01_06-39-48_0.10.0/"&gt;is available at SourceForge&lt;/a&gt;. Simply unpack the archive and launch the run script.&lt;/li&gt;
  1596. &lt;li&gt;&lt;strong&gt;Mahjong Solitaire game&lt;/strong&gt; &lt;a href="https://sourceforge.net/projects/osrpgcreation/files/Games/MahjongSolitaire/"&gt;is available at SourceForge&lt;/a&gt;, too. Simply unpack the archive and launch the run script.&lt;/li&gt;
  1597. &lt;li&gt;&lt;strong&gt;Live session project&lt;/strong&gt; &lt;a href="https://github.com/OGStudio/mahjong-solitaire-livesession"&gt;is available at GitHub&lt;/a&gt;.&lt;/li&gt;
  1598. &lt;li&gt;&lt;strong&gt;Live session recording&lt;/strong&gt; &lt;a href="https://youtu.be/g8Tyj_YH2Qc?list=PLWMTZqE4MAMJzBnXS9qU_ObWnzJuskI3F"&gt;is available at YouTube&lt;/a&gt;. The video depicts the whole process of creating Mahjong Solitaire from scratch using &lt;a href="https://github.com/OGStudio/mahjong-solitaire-rehearsal"&gt;rehearsal project&lt;/a&gt; resources.&lt;/li&gt;
  1599. &lt;/ul&gt;</content></entry><entry><title>OGS Editor 0.10 и материалы прямого эфира</title><link href="http://opengamestudio.org/ogs-editor-0.10-ru.html" rel="alternate"></link><published>2016-10-03T00:00:00+03:00</published><updated>2016-10-03T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-10-03:/ogs-editor-0.10-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="ogs-editor-0.10" src="http://opengamestudio.org/2016-10-03_ogs-editor-0.10.png"&gt;
  1600. Внимание: мы не выпустим версию 0.10 для macOS из-за технических проблем с системой сборки. Поддержку macOS вернём к 0.11.&lt;/p&gt;
  1601. &lt;ul&gt;
  1602. &lt;li&gt;&lt;strong&gt;OGS Editor 0.10&lt;/strong&gt; &lt;a href="https://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/51_2016-10-01_06-39-48_0.10.0/"&gt;доступен на SourceForge&lt;/a&gt;. Просто распакуйте архив и запустите скрипт run.&lt;/li&gt;
  1603. &lt;li&gt;&lt;strong&gt;Пасьянс маджонг&lt;/strong&gt; тоже &lt;a href="https://sourceforge.net/projects/osrpgcreation/files/Games/MahjongSolitaire/"&gt;доступен на SourceForge&lt;/a&gt;. Просто распакуйте архив и запустите скрипт run.&lt;/li&gt;
  1604. &lt;li&gt;&lt;strong&gt;Проект прямого …&lt;/strong&gt;&lt;/li&gt;&lt;/ul&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="ogs-editor-0.10" src="http://opengamestudio.org/2016-10-03_ogs-editor-0.10.png"&gt;
  1605. Внимание: мы не выпустим версию 0.10 для macOS из-за технических проблем с системой сборки. Поддержку macOS вернём к 0.11.&lt;/p&gt;
  1606. &lt;ul&gt;
  1607. &lt;li&gt;&lt;strong&gt;OGS Editor 0.10&lt;/strong&gt; &lt;a href="https://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/51_2016-10-01_06-39-48_0.10.0/"&gt;доступен на SourceForge&lt;/a&gt;. Просто распакуйте архив и запустите скрипт run.&lt;/li&gt;
  1608. &lt;li&gt;&lt;strong&gt;Пасьянс маджонг&lt;/strong&gt; тоже &lt;a href="https://sourceforge.net/projects/osrpgcreation/files/Games/MahjongSolitaire/"&gt;доступен на SourceForge&lt;/a&gt;. Просто распакуйте архив и запустите скрипт run.&lt;/li&gt;
  1609. &lt;li&gt;&lt;strong&gt;Проект прямого эфира&lt;/strong&gt; &lt;a href="https://github.com/OGStudio/mahjong-solitaire-livesession"&gt;доступен на GitHub&lt;/a&gt;.&lt;/li&gt;
  1610. &lt;li&gt;&lt;strong&gt;Запись прямого эфира&lt;/strong&gt; &lt;a href="https://youtu.be/g8Tyj_YH2Qc?list=PLWMTZqE4MAMJzBnXS9qU_ObWnzJuskI3F"&gt;доступна на YouTube&lt;/a&gt;. Видео содержит весь процесс создания пасьянса маджонг с использованием ресурсов &lt;a href="https://github.com/OGStudio/mahjong-solitaire-rehearsal"&gt;проекта-репетиции&lt;/a&gt;.&lt;/li&gt;
  1611. &lt;/ul&gt;</content></entry><entry><title>A few words about live session yesterday</title><link href="http://opengamestudio.org/yesterdays-live-session-short-overview.html" rel="alternate"></link><published>2016-09-26T00:00:00+03:00</published><updated>2016-09-26T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-09-26:/yesterdays-live-session-short-overview.html</id><summary type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/_t8TGhSgJG4" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1612. &lt;p&gt;Mahjong Solitaire was successfully created, and it took less than 4 hours.
  1613. We will publish live session materials later this week.&lt;/p&gt;
  1614. &lt;p&gt;Thank you for joining us.&lt;/p&gt;</summary><content type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/_t8TGhSgJG4" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1615. &lt;p&gt;Mahjong Solitaire was successfully created, and it took less than 4 hours.
  1616. We will publish live session materials later this week.&lt;/p&gt;
  1617. &lt;p&gt;Thank you for joining us.&lt;/p&gt;</content></entry><entry><title>Пара слов о вчерашнем прямом эфире</title><link href="http://opengamestudio.org/yesterdays-live-session-short-overview-ru.html" rel="alternate"></link><published>2016-09-26T00:00:00+03:00</published><updated>2016-09-26T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-09-26:/yesterdays-live-session-short-overview-ru.html</id><summary type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/_t8TGhSgJG4" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1618. &lt;p&gt;Создание пасьянса Маджонг прошло успешно, и заняло менее 4 часов.
  1619. Мы опубликуем материалы прямого эфира чуть позже на этой неделе.&lt;/p&gt;
  1620. &lt;p&gt;Спасибо за участие.&lt;/p&gt;</summary><content type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/_t8TGhSgJG4" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1621. &lt;p&gt;Создание пасьянса Маджонг прошло успешно, и заняло менее 4 часов.
  1622. Мы опубликуем материалы прямого эфира чуть позже на этой неделе.&lt;/p&gt;
  1623. &lt;p&gt;Спасибо за участие.&lt;/p&gt;</content></entry><entry><title>Live session is in 24 hours</title><link href="http://opengamestudio.org/september-live-session-announcement-tomorrow.html" rel="alternate"></link><published>2016-09-24T00:00:00+03:00</published><updated>2016-09-24T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-09-24:/september-live-session-announcement-tomorrow.html</id><summary type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/Fj4yHG-mV1U" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1624. &lt;p&gt;Get ready for &lt;a href="https://www.livecoding.tv/kornerr"&gt;live session&lt;/a&gt;, it's about to happen in 24 hours!&lt;/p&gt;</summary><content type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/Fj4yHG-mV1U" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1625. &lt;p&gt;Get ready for &lt;a href="https://www.livecoding.tv/kornerr"&gt;live session&lt;/a&gt;, it's about to happen in 24 hours!&lt;/p&gt;</content></entry><entry><title>Прямой эфир через 24 часа</title><link href="http://opengamestudio.org/september-live-session-announcement-tomorrow-ru.html" rel="alternate"></link><published>2016-09-24T00:00:00+03:00</published><updated>2016-09-24T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-09-24:/september-live-session-announcement-tomorrow-ru.html</id><summary type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/Fj4yHG-mV1U" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1626. &lt;p&gt;Приготовьтесь к &lt;a href="https://www.livecoding.tv/kornerr"&gt;прямому эфиру&lt;/a&gt;, он начнётся через 24 часа!&lt;/p&gt;</summary><content type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/Fj4yHG-mV1U" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1627. &lt;p&gt;Приготовьтесь к &lt;a href="https://www.livecoding.tv/kornerr"&gt;прямому эфиру&lt;/a&gt;, он начнётся через 24 часа!&lt;/p&gt;</content></entry><entry><title>Live session: 25 September 2016</title><link href="http://opengamestudio.org/september-live-session-announcement.html" rel="alternate"></link><published>2016-09-17T00:00:00+03:00</published><updated>2016-09-17T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-09-17:/september-live-session-announcement.html</id><summary type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/Y5hOGKcQ8wA" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1628. &lt;p&gt;We will hold &lt;a href="https://www.livecoding.tv/kornerr"&gt;live session&lt;/a&gt; on &lt;a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio+September+2016+live+session&amp;amp;iso=20160925T12&amp;amp;p1=37&amp;amp;ah=2"&gt;25 September 2016 at 12:00 CEST&lt;/a&gt;
  1629. It's time to create simple Mahjong solitaire game.&lt;/p&gt;</summary><content type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/Y5hOGKcQ8wA" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1630. &lt;p&gt;We will hold &lt;a href="https://www.livecoding.tv/kornerr"&gt;live session&lt;/a&gt; on &lt;a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio+September+2016+live+session&amp;amp;iso=20160925T12&amp;amp;p1=37&amp;amp;ah=2"&gt;25 September 2016 at 12:00 CEST&lt;/a&gt;
  1631. It's time to create simple Mahjong solitaire game.&lt;/p&gt;</content></entry><entry><title>Прямой эфир: 25 сентября 2016</title><link href="http://opengamestudio.org/september-live-session-announcement-ru.html" rel="alternate"></link><published>2016-09-17T00:00:00+03:00</published><updated>2016-09-17T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-09-17:/september-live-session-announcement-ru.html</id><summary type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/Y5hOGKcQ8wA" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1632. &lt;p&gt;&lt;a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=%D0%9F%D1%80%D1%8F%D0%BC%D0%BE%D0%B9+%D1%8D%D1%84%D0%B8%D1%80+Open+Game+Studio%3A+%D0%A1%D0%B5%D0%BD%D1%82%D1%8F%D0%B1%D1%80%D1%8C+2016&amp;amp;iso=20160925T13&amp;amp;p1=166&amp;amp;ah=2"&gt;25 сентября 2016 в 13:00 MSK&lt;/a&gt; мы проведём &lt;a href="https://www.livecoding.tv/kornerr"&gt;прямой эфир&lt;/a&gt;.
  1633. Самое время создать простой пасьянс Маджонг&lt;/p&gt;</summary><content type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/Y5hOGKcQ8wA" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  1634. &lt;p&gt;&lt;a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=%D0%9F%D1%80%D1%8F%D0%BC%D0%BE%D0%B9+%D1%8D%D1%84%D0%B8%D1%80+Open+Game+Studio%3A+%D0%A1%D0%B5%D0%BD%D1%82%D1%8F%D0%B1%D1%80%D1%8C+2016&amp;amp;iso=20160925T13&amp;amp;p1=166&amp;amp;ah=2"&gt;25 сентября 2016 в 13:00 MSK&lt;/a&gt; мы проведём &lt;a href="https://www.livecoding.tv/kornerr"&gt;прямой эфир&lt;/a&gt;.
  1635. Самое время создать простой пасьянс Маджонг&lt;/p&gt;</content></entry><entry><title>August 2016 recap</title><link href="http://opengamestudio.org/2016-august-recap.html" rel="alternate"></link><published>2016-09-03T00:00:00+03:00</published><updated>2016-09-03T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-09-03:/2016-august-recap.html</id><summary type="html">&lt;p&gt;&lt;img alt="2016-august-recap" src="http://opengamestudio.org/2016-09-03_august-recap.png"&gt;&lt;/p&gt;
  1636. &lt;p&gt;This article explains the most important technical details about development in August: UIQt module, its refactoring, a new feature based development approach, and its benefits.&lt;/p&gt;
  1637. &lt;p&gt;&lt;strong&gt;UIQt module&lt;/strong&gt; is a collection of UI components backed by Qt. We only use it for Editor UI at the moment.&lt;/p&gt;
  1638. &lt;p&gt;Here is a list …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="2016-august-recap" src="http://opengamestudio.org/2016-09-03_august-recap.png"&gt;&lt;/p&gt;
  1639. &lt;p&gt;This article explains the most important technical details about development in August: UIQt module, its refactoring, a new feature based development approach, and its benefits.&lt;/p&gt;
  1640. &lt;p&gt;&lt;strong&gt;UIQt module&lt;/strong&gt; is a collection of UI components backed by Qt. We only use it for Editor UI at the moment.&lt;/p&gt;
  1641. &lt;p&gt;Here is a list of UIQt module components with their description and current code size:&lt;table&gt;
  1642. &lt;tr&gt;
  1643. &lt;th&gt;&lt;strong&gt;№&lt;/strong&gt;&lt;/th&gt;
  1644. &lt;th&gt;&lt;strong&gt;Component&lt;/strong&gt;&lt;/th&gt;
  1645. &lt;th&gt;&lt;strong&gt;Description&lt;/strong&gt;&lt;/th&gt;
  1646. &lt;th&gt;&lt;strong&gt;Size (B)&lt;/strong&gt;&lt;/th&gt;
  1647. &lt;th&gt;&lt;strong&gt;Size (%)&lt;/strong&gt;&lt;/th&gt;
  1648. &lt;/tr&gt;
  1649. &lt;tr&gt;
  1650. &lt;td&gt;1&lt;/td&gt;
  1651. &lt;td&gt;UIQtAction&lt;/td&gt;
  1652. &lt;td&gt;Actions (events) for menus&lt;/td&gt;
  1653. &lt;td&gt;11224&lt;/td&gt;
  1654. &lt;td&gt;9&lt;/td&gt;
  1655. &lt;/tr&gt;
  1656. &lt;tr&gt;
  1657. &lt;td&gt;2&lt;/td&gt;
  1658. &lt;td&gt;UIQtAux&lt;/td&gt;
  1659. &lt;td&gt;Initializes Qt and main window. Provides widget resolution by name to other components&lt;/td&gt;
  1660. &lt;td&gt;15518&lt;/td&gt;
  1661. &lt;td&gt;12&lt;/td&gt;
  1662. &lt;/tr&gt;
  1663. &lt;tr&gt;
  1664. &lt;td&gt;3&lt;/td&gt;
  1665. &lt;td&gt;UIQtDock&lt;/td&gt;
  1666. &lt;td&gt;Widget docks&lt;/td&gt;
  1667. &lt;td&gt;5273&lt;/td&gt;
  1668. &lt;td&gt;4&lt;/td&gt;
  1669. &lt;/tr&gt;
  1670. &lt;tr&gt;
  1671. &lt;td&gt;4&lt;/td&gt;
  1672. &lt;td&gt;UIQtFileDialog&lt;/td&gt;
  1673. &lt;td&gt;File selection dialogs&lt;/td&gt;
  1674. &lt;td&gt;8960&lt;/td&gt;
  1675. &lt;td&gt;7&lt;/td&gt;
  1676. &lt;/tr&gt;
  1677. &lt;tr&gt;
  1678. &lt;td&gt;5&lt;/td&gt;
  1679. &lt;td&gt;UIQtMenu&lt;/td&gt;
  1680. &lt;td&gt;Menus for main window and pop-ups (like node's add/copy/paste/delete menu)&lt;/td&gt;
  1681. &lt;td&gt;4566&lt;/td&gt;
  1682. &lt;td&gt;3&lt;/td&gt;
  1683. &lt;/tr&gt;
  1684. &lt;tr&gt;
  1685. &lt;td&gt;6&lt;/td&gt;
  1686. &lt;td&gt;UIQtMenuBar&lt;/td&gt;
  1687. &lt;td&gt;Menu bar for main window&lt;/td&gt;
  1688. &lt;td&gt;4222&lt;/td&gt;
  1689. &lt;td&gt;3&lt;/td&gt;
  1690. &lt;/tr&gt;
  1691. &lt;tr&gt;
  1692. &lt;td&gt;7&lt;/td&gt;
  1693. &lt;td&gt;UIQtRunner&lt;/td&gt;
  1694. &lt;td&gt;Allows to start QApplication&lt;/td&gt;
  1695. &lt;td&gt;2450&lt;/td&gt;
  1696. &lt;td&gt;2&lt;/td&gt;
  1697. &lt;/tr&gt;
  1698. &lt;tr&gt;
  1699. &lt;td&gt;8&lt;/td&gt;
  1700. &lt;td&gt;UIQtThumbnailDialog&lt;/td&gt;
  1701. &lt;td&gt;Dialog with thumbnail images&lt;/td&gt;
  1702. &lt;td&gt;18615&lt;/td&gt;
  1703. &lt;td&gt;14&lt;/td&gt;
  1704. &lt;/tr&gt;
  1705. &lt;tr&gt;
  1706. &lt;td&gt;9&lt;/td&gt;
  1707. &lt;td&gt;UIQtToolBar&lt;/td&gt;
  1708. &lt;td&gt;Tool bar for main window&lt;/td&gt;
  1709. &lt;td&gt;4276&lt;/td&gt;
  1710. &lt;td&gt;3&lt;/td&gt;
  1711. &lt;/tr&gt;
  1712. &lt;tr&gt;
  1713. &lt;td&gt;10&lt;/td&gt;
  1714. &lt;td&gt;UIQtTree&lt;/td&gt;
  1715. &lt;td&gt;Provides complex widgets like Scene tree and Property browser&lt;/td&gt;
  1716. &lt;td&gt;51216&lt;/td&gt;
  1717. &lt;td&gt;39&lt;/td&gt;
  1718. &lt;/tr&gt;
  1719. &lt;tr&gt;
  1720. &lt;td&gt;11&lt;/td&gt;
  1721. &lt;td&gt;UIQtWidget&lt;/td&gt;
  1722. &lt;td&gt;Common widget properties like focus and visibility&lt;/td&gt;
  1723. &lt;td&gt;5465&lt;/td&gt;
  1724. &lt;td&gt;4&lt;/td&gt;
  1725. &lt;/tr&gt;
  1726. &lt;/table&gt;&lt;/p&gt;
  1727. &lt;p&gt;&lt;strong&gt;UIQt module refactoring&lt;/strong&gt; purpose was to replace old State API with new Environment API, which allows to achieve the same functionality with less code, i.e., makes development easier and faster.&lt;/p&gt;
  1728. &lt;p&gt;Refactoring started in July and should have been done the same month. However, we only finished the work in August. Initial plan assumed 28 hours would be enough, but we spent 65 instead. We estimated planned time by relying on the number of public API calls of each component. That worked fine for small components, because the number of their public API calls was roughly equal to the number of their features, and features themselves were very small. However, it totally failed for UIQtTree, which contains 39% of UIQt module code, because there was no direct connection between public API and features.&lt;/p&gt;
  1729. &lt;p&gt;&lt;strong&gt;Feature based development approach&lt;/strong&gt; was born as a result of UIQtTree refactoring struggle. Since Qt uses MVC, UIQtTree component consists of several classes. By the time UIQtTree could display and manage a hierarchy of items, the component was already 27K in size. We noticed UIQtTree started to require abnormal amount of development time even for tiny features. This was an obvious &lt;a href="http://kornerr.blogspot.com/2012/04/complexity-conservation-law-complexity.html"&gt;quantitative complexity&lt;/a&gt; manifestation.&lt;/p&gt;
  1730. &lt;p&gt;We decided to separate UIQtTree into base part and additional ones. Base would only contain minimal code required by all features. Addition would contain specific feature code and could be safely modified. In the case of UIQtTree, item hierarchy display and modification is the minimal functionality, while item renaming is an addition.&lt;/p&gt;
  1731. &lt;p&gt;Here is a list of current UIQtTree features:&lt;/p&gt;
  1732. &lt;table&gt;
  1733. &lt;tr&gt;
  1734. &lt;th&gt;**№**&lt;/th&gt;
  1735. &lt;th&gt;**Feature**&lt;/th&gt;
  1736. &lt;th&gt;**Description**&lt;/th&gt;
  1737. &lt;th&gt;**Size (B)**&lt;/th&gt;
  1738. &lt;th&gt;**Size (%)**&lt;/th&gt;
  1739. &lt;/tr&gt;
  1740. &lt;tr&gt;
  1741. &lt;td&gt;1&lt;/td&gt;
  1742. &lt;td&gt;Base&lt;/td&gt;
  1743. &lt;td&gt;Allows to construct item hierarchy, modify it, and display it&lt;/td&gt;
  1744. &lt;td&gt;26966&lt;/td&gt;
  1745. &lt;td&gt;52&lt;/td&gt;
  1746. &lt;/tr&gt;
  1747. &lt;tr&gt;
  1748. &lt;td&gt;2&lt;/td&gt;
  1749. &lt;td&gt;Item open state&lt;/td&gt;
  1750. &lt;td&gt;Keeps track of collapsed/expanded item properties&lt;/td&gt;
  1751. &lt;td&gt;3094&lt;/td&gt;
  1752. &lt;td&gt;6&lt;/td&gt;
  1753. &lt;/tr&gt;
  1754. &lt;tr&gt;
  1755. &lt;td&gt;3&lt;/td&gt;
  1756. &lt;td&gt;Item renaming&lt;/td&gt;
  1757. &lt;td&gt;Allows to rename an item&lt;/td&gt;
  1758. &lt;td&gt;3471&lt;/td&gt;
  1759. &lt;td&gt;7&lt;/td&gt;
  1760. &lt;/tr&gt;
  1761. &lt;tr&gt;
  1762. &lt;td&gt;4&lt;/td&gt;
  1763. &lt;td&gt;Item selection&lt;/td&gt;
  1764. &lt;td&gt;Allows to get/set selected item&lt;/td&gt;
  1765. &lt;td&gt;2338&lt;/td&gt;
  1766. &lt;td&gt;5&lt;/td&gt;
  1767. &lt;/tr&gt;
  1768. &lt;tr&gt;
  1769. &lt;td&gt;5&lt;/td&gt;
  1770. &lt;td&gt;Item value&lt;/td&gt;
  1771. &lt;td&gt;Provides 2nd and the rest columns for items, used by Property browser&lt;/td&gt;
  1772. &lt;td&gt;1307&lt;/td&gt;
  1773. &lt;td&gt;3&lt;/td&gt;
  1774. &lt;/tr&gt;
  1775. &lt;tr&gt;
  1776. &lt;td&gt;6&lt;/td&gt;
  1777. &lt;td&gt;Item value editing&lt;/td&gt;
  1778. &lt;td&gt;Allows to edit item values with a default editor widget&lt;/td&gt;
  1779. &lt;td&gt;1996&lt;/td&gt;
  1780. &lt;td&gt;4&lt;/td&gt;
  1781. &lt;/tr&gt;
  1782. &lt;tr&gt;
  1783. &lt;td&gt;7&lt;/td&gt;
  1784. &lt;td&gt;Item value editing with combobox&lt;/td&gt;
  1785. &lt;td&gt;Provides combobox editor&lt;/td&gt;
  1786. &lt;td&gt;5819&lt;/td&gt;
  1787. &lt;td&gt;11&lt;/td&gt;
  1788. &lt;/tr&gt;
  1789. &lt;tr&gt;
  1790. &lt;td&gt;8&lt;/td&gt;
  1791. &lt;td&gt;Item value editing with spinner&lt;/td&gt;
  1792. &lt;td&gt;Provides spinbox editor&lt;/td&gt;
  1793. &lt;td&gt;5290&lt;/td&gt;
  1794. &lt;td&gt;10&lt;/td&gt;
  1795. &lt;/tr&gt;
  1796. &lt;tr&gt;
  1797. &lt;td&gt;9&lt;/td&gt;
  1798. &lt;td&gt;Menu&lt;/td&gt;
  1799. &lt;td&gt;Provides pop-up menu&lt;/td&gt;
  1800. &lt;td&gt;1248&lt;/td&gt;
  1801. &lt;td&gt;2&lt;/td&gt;
  1802. &lt;/tr&gt;
  1803. &lt;/table&gt;
  1804. &lt;p&gt;Here's an example of UIQtTree Menu feature file: &lt;a href="https://bitbucket.org/ogstudio-history/mjin/src/0c4cc3c3213f4687c0f3bd6a5426a6054cadd79b/f/TREE_MENU.cpp?at=Studio+0.10&amp;amp;fileviewer=file-view-default"&gt;TREE_MENU&lt;/a&gt;.&lt;/p&gt;
  1805. &lt;p&gt;&lt;strong&gt;Benefits of the approach&lt;/strong&gt; include:&lt;/p&gt;
  1806. &lt;ol&gt;
  1807. &lt;li&gt;Faster code reading/understanding due to small size&lt;/li&gt;
  1808. &lt;li&gt;Easier and safer modification due to isolated code&lt;/li&gt;
  1809. &lt;/ol&gt;
  1810. &lt;p&gt;There's a drawback, too: new approach requires learning.&lt;/p&gt;
  1811. &lt;p&gt;That's it for the most important technical details about development in August: UIQt module, its refactoring, a new feature based development approach, and its benefits.&lt;/p&gt;</content></entry><entry><title>Август 2016 кратко</title><link href="http://opengamestudio.org/2016-august-recap-ru.html" rel="alternate"></link><published>2016-09-03T00:00:00+03:00</published><updated>2016-09-03T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-09-03:/2016-august-recap-ru.html</id><summary type="html">&lt;p&gt;&lt;img alt="2016-august-recap" src="http://opengamestudio.org/2016-09-03_august-recap.png"&gt;&lt;/p&gt;
  1812. &lt;p&gt;Эта статья описывает самые важные технические детали разработки за август: модуль UIQt, его переработку, новый подход к разработке на основе функционала и его преимущества.&lt;/p&gt;
  1813. &lt;p&gt;&lt;strong&gt;Модуль UIQt&lt;/strong&gt; - это коллекция компонент UI на основе Qt. Сейчас используем лишь для интерфейса редактора.&lt;/p&gt;
  1814. &lt;p&gt;Список компонент модуля UIQt с описанием и размером кода:&lt;table&gt;
  1815. &lt;tr&gt;
  1816. &lt;th&gt;&lt;strong&gt;№&lt;/strong&gt;&lt;/th&gt;
  1817. &lt;th&gt;&lt;strong&gt;Компонента&lt;/strong&gt;&lt;/th&gt;
  1818. &lt;th&gt;&lt;strong&gt;Описание …&lt;/strong&gt;&lt;/th&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;img alt="2016-august-recap" src="http://opengamestudio.org/2016-09-03_august-recap.png"&gt;&lt;/p&gt;
  1819. &lt;p&gt;Эта статья описывает самые важные технические детали разработки за август: модуль UIQt, его переработку, новый подход к разработке на основе функционала и его преимущества.&lt;/p&gt;
  1820. &lt;p&gt;&lt;strong&gt;Модуль UIQt&lt;/strong&gt; - это коллекция компонент UI на основе Qt. Сейчас используем лишь для интерфейса редактора.&lt;/p&gt;
  1821. &lt;p&gt;Список компонент модуля UIQt с описанием и размером кода:&lt;table&gt;
  1822. &lt;tr&gt;
  1823. &lt;th&gt;&lt;strong&gt;№&lt;/strong&gt;&lt;/th&gt;
  1824. &lt;th&gt;&lt;strong&gt;Компонента&lt;/strong&gt;&lt;/th&gt;
  1825. &lt;th&gt;&lt;strong&gt;Описание&lt;/strong&gt;&lt;/th&gt;
  1826. &lt;th&gt;&lt;strong&gt;Размер (Б)&lt;/strong&gt;&lt;/th&gt;
  1827. &lt;th&gt;&lt;strong&gt;Размер (%)&lt;/strong&gt;&lt;/th&gt;
  1828. &lt;/tr&gt;
  1829. &lt;tr&gt;
  1830. &lt;td&gt;1&lt;/td&gt;
  1831. &lt;td&gt;UIQtAction&lt;/td&gt;
  1832. &lt;td&gt;Действия (события) для меню&lt;/td&gt;
  1833. &lt;td&gt;11224&lt;/td&gt;
  1834. &lt;td&gt;9&lt;/td&gt;
  1835. &lt;/tr&gt;
  1836. &lt;tr&gt;
  1837. &lt;td&gt;2&lt;/td&gt;
  1838. &lt;td&gt;UIQtAux&lt;/td&gt;
  1839. &lt;td&gt;Инициализирует Qt и главное окно. Предоставляет поиск виджета по имени для других компонент&lt;/td&gt;
  1840. &lt;td&gt;15518&lt;/td&gt;
  1841. &lt;td&gt;12&lt;/td&gt;
  1842. &lt;/tr&gt;
  1843. &lt;tr&gt;
  1844. &lt;td&gt;3&lt;/td&gt;
  1845. &lt;td&gt;UIQtDock&lt;/td&gt;
  1846. &lt;td&gt;Виджет стыковки&lt;/td&gt;
  1847. &lt;td&gt;5273&lt;/td&gt;
  1848. &lt;td&gt;4&lt;/td&gt;
  1849. &lt;/tr&gt;
  1850. &lt;tr&gt;
  1851. &lt;td&gt;4&lt;/td&gt;
  1852. &lt;td&gt;UIQtFileDialog&lt;/td&gt;
  1853. &lt;td&gt;Диалог выбора файла&lt;/td&gt;
  1854. &lt;td&gt;8960&lt;/td&gt;
  1855. &lt;td&gt;7&lt;/td&gt;
  1856. &lt;/tr&gt;
  1857. &lt;tr&gt;
  1858. &lt;td&gt;5&lt;/td&gt;
  1859. &lt;td&gt;UIQtMenu&lt;/td&gt;
  1860. &lt;td&gt;Меню для главного окна и на ПКМ (вроде меню по добавлению/копированию/вставке/удалению узла)&lt;/td&gt;
  1861. &lt;td&gt;4566&lt;/td&gt;
  1862. &lt;td&gt;3&lt;/td&gt;
  1863. &lt;/tr&gt;
  1864. &lt;tr&gt;
  1865. &lt;td&gt;6&lt;/td&gt;
  1866. &lt;td&gt;UIQtMenuBar&lt;/td&gt;
  1867. &lt;td&gt;Панель меню для главного окна&lt;/td&gt;
  1868. &lt;td&gt;4222&lt;/td&gt;
  1869. &lt;td&gt;3&lt;/td&gt;
  1870. &lt;/tr&gt;
  1871. &lt;tr&gt;
  1872. &lt;td&gt;7&lt;/td&gt;
  1873. &lt;td&gt;UIQtRunner&lt;/td&gt;
  1874. &lt;td&gt;Позволяет запустить QApplication&lt;/td&gt;
  1875. &lt;td&gt;2450&lt;/td&gt;
  1876. &lt;td&gt;2&lt;/td&gt;
  1877. &lt;/tr&gt;
  1878. &lt;tr&gt;
  1879. &lt;td&gt;8&lt;/td&gt;
  1880. &lt;td&gt;UIQtThumbnailDialog&lt;/td&gt;
  1881. &lt;td&gt;Диалог с изображениями&lt;/td&gt;
  1882. &lt;td&gt;18615&lt;/td&gt;
  1883. &lt;td&gt;14&lt;/td&gt;
  1884. &lt;/tr&gt;
  1885. &lt;tr&gt;
  1886. &lt;td&gt;9&lt;/td&gt;
  1887. &lt;td&gt;UIQtToolBar&lt;/td&gt;
  1888. &lt;td&gt;Панель инструментов для главого окна&lt;/td&gt;
  1889. &lt;td&gt;4276&lt;/td&gt;
  1890. &lt;td&gt;3&lt;/td&gt;
  1891. &lt;/tr&gt;
  1892. &lt;tr&gt;
  1893. &lt;td&gt;10&lt;/td&gt;
  1894. &lt;td&gt;UIQtTree&lt;/td&gt;
  1895. &lt;td&gt;Предоставляет сложные виджеты вроде Дерева сцены и Редактора свойств&lt;/td&gt;
  1896. &lt;td&gt;51216&lt;/td&gt;
  1897. &lt;td&gt;39&lt;/td&gt;
  1898. &lt;/tr&gt;
  1899. &lt;tr&gt;
  1900. &lt;td&gt;11&lt;/td&gt;
  1901. &lt;td&gt;UIQtWidget&lt;/td&gt;
  1902. &lt;td&gt;Общие свойства виджетов вроде фокуса и видимости&lt;/td&gt;
  1903. &lt;td&gt;5465&lt;/td&gt;
  1904. &lt;td&gt;4&lt;/td&gt;
  1905. &lt;/tr&gt;
  1906. &lt;/table&gt;&lt;/p&gt;
  1907. &lt;p&gt;&lt;strong&gt;Мы переработали модуль UIQt&lt;/strong&gt; для замены старого State API на новый Environment API, который позволяет делать то же самое лаконичнее, т.е. упрощает и ускоряет разработку.&lt;/p&gt;
  1908. &lt;p&gt;Переработку начали в июле и должны были закончить в том же месяце. Тем не менеe, работы завершили лишь в августе. Начальный план предполагал, что 28 часов должно хватить, но мы потратили 65. Мы оценивали необходимое время на основе количества вызовов публичного API каждой компоненты. Это хорошо сработало для небольших компонент, т.к. число вызовов их публичного API было примерно равно количеству их функционала, а сам функционал был очень маленький. Однако такой подход полностью провалился для компонеты UIQtTree, составляющей 39% кода модуля UIQt, потому что не было прямой связи между публичным API и функционалом.&lt;/p&gt;
  1909. &lt;p&gt;&lt;strong&gt;Новый подход к разработке на основе функционала&lt;/strong&gt; родился после решения проблем с переработкой UIQtTree. Т.к. Qt использует MVC, компонента UIQtTree состоит из нескольких классов. К тому моменту, когда UIQtTree могла отображать и управлять иерархией элементов, компонента уже имела размер в 27К. Мы заметили, что UIQtTree стала потреблять непомерное количество времени разработки даже для мелкого функционала. Это было явным проявлением &lt;a href="http://rsdn.org/article/philosophy/Complexity.xml"&gt;количественной сложности&lt;/a&gt;.&lt;/p&gt;
  1910. &lt;p&gt;Мы решили разбить UIQtTree на базовую часть и дополнительные. База содержит лишь необходимый минимум кода. Дополнение содержит код, специфичный для данного функционала, и может быть безболезненно изменено. В случае UIQtTree, отображение и управление иерархией элементов - это минимальный функционал, а переименование элементов - это дополнение.&lt;/p&gt;
  1911. &lt;p&gt;Текущий функционал UIQtTree состоит из следующих возможностей:&lt;/p&gt;
  1912. &lt;table&gt;
  1913. &lt;tr&gt;
  1914. &lt;th&gt;**№**&lt;/th&gt;
  1915. &lt;th&gt;**Функционал**&lt;/th&gt;
  1916. &lt;th&gt;**Описание**&lt;/th&gt;
  1917. &lt;th&gt;**Размер (Б)**&lt;/th&gt;
  1918. &lt;th&gt;**Размер (%)**&lt;/th&gt;
  1919. &lt;/tr&gt;
  1920. &lt;tr&gt;
  1921. &lt;td&gt;1&lt;/td&gt;
  1922. &lt;td&gt;Base&lt;/td&gt;
  1923. &lt;td&gt;Создание, изменение, отображение иерархии элементов&lt;/td&gt;
  1924. &lt;td&gt;26966&lt;/td&gt;
  1925. &lt;td&gt;52&lt;/td&gt;
  1926. &lt;/tr&gt;
  1927. &lt;tr&gt;
  1928. &lt;td&gt;2&lt;/td&gt;
  1929. &lt;td&gt;Item open state&lt;/td&gt;
  1930. &lt;td&gt;Хранит состояние свойства скрыто/отображено элемента&lt;/td&gt;
  1931. &lt;td&gt;3094&lt;/td&gt;
  1932. &lt;td&gt;6&lt;/td&gt;
  1933. &lt;/tr&gt;
  1934. &lt;tr&gt;
  1935. &lt;td&gt;3&lt;/td&gt;
  1936. &lt;td&gt;Item renaming&lt;/td&gt;
  1937. &lt;td&gt;Переименование элемента&lt;/td&gt;
  1938. &lt;td&gt;3471&lt;/td&gt;
  1939. &lt;td&gt;7&lt;/td&gt;
  1940. &lt;/tr&gt;
  1941. &lt;tr&gt;
  1942. &lt;td&gt;4&lt;/td&gt;
  1943. &lt;td&gt;Item selection&lt;/td&gt;
  1944. &lt;td&gt;Получение/установка выбранного элемента&lt;/td&gt;
  1945. &lt;td&gt;2338&lt;/td&gt;
  1946. &lt;td&gt;5&lt;/td&gt;
  1947. &lt;/tr&gt;
  1948. &lt;tr&gt;
  1949. &lt;td&gt;5&lt;/td&gt;
  1950. &lt;td&gt;Item value&lt;/td&gt;
  1951. &lt;td&gt;Предоставляет второй и последующие столбцы для элементов, используется Редактором свойств&lt;/td&gt;
  1952. &lt;td&gt;1307&lt;/td&gt;
  1953. &lt;td&gt;3&lt;/td&gt;
  1954. &lt;/tr&gt;
  1955. &lt;tr&gt;
  1956. &lt;td&gt;6&lt;/td&gt;
  1957. &lt;td&gt;Item value editing&lt;/td&gt;
  1958. &lt;td&gt;Редактирование значений элемента с помощью стандартного виджета&lt;/td&gt;
  1959. &lt;td&gt;1996&lt;/td&gt;
  1960. &lt;td&gt;4&lt;/td&gt;
  1961. &lt;/tr&gt;
  1962. &lt;tr&gt;
  1963. &lt;td&gt;7&lt;/td&gt;
  1964. &lt;td&gt;Item value editing with combobox&lt;/td&gt;
  1965. &lt;td&gt;Редактирование значений элемента с помощью виджета combobox&lt;/td&gt;
  1966. &lt;td&gt;5819&lt;/td&gt;
  1967. &lt;td&gt;11&lt;/td&gt;
  1968. &lt;/tr&gt;
  1969. &lt;tr&gt;
  1970. &lt;td&gt;8&lt;/td&gt;
  1971. &lt;td&gt;Item value editing with spinner&lt;/td&gt;
  1972. &lt;td&gt;Редактирование значений элемента с помощью виджета spinbox&lt;/td&gt;
  1973. &lt;td&gt;5290&lt;/td&gt;
  1974. &lt;td&gt;10&lt;/td&gt;
  1975. &lt;/tr&gt;
  1976. &lt;tr&gt;
  1977. &lt;td&gt;9&lt;/td&gt;
  1978. &lt;td&gt;Menu&lt;/td&gt;
  1979. &lt;td&gt;Меню на ПКМ&lt;/td&gt;
  1980. &lt;td&gt;1248&lt;/td&gt;
  1981. &lt;td&gt;2&lt;/td&gt;
  1982. &lt;/tr&gt;
  1983. &lt;/table&gt;
  1984. &lt;p&gt;Пример файла функционала Menu для UIQtTree: &lt;a href="https://bitbucket.org/ogstudio-history/mjin/src/0c4cc3c3213f4687c0f3bd6a5426a6054cadd79b/f/TREE_MENU.cpp?at=Studio+0.10&amp;amp;fileviewer=file-view-default"&gt;TREE_MENU&lt;/a&gt;.&lt;/p&gt;
  1985. &lt;p&gt;&lt;strong&gt;Преимущества подхода:&lt;/strong&gt;&lt;/p&gt;
  1986. &lt;ol&gt;
  1987. &lt;li&gt;Более быстрое чтение/понимание благодаря небольшому размеру&lt;/li&gt;
  1988. &lt;li&gt;Более простое и безболезненное изменение благодаря изолированному коду&lt;/li&gt;
  1989. &lt;/ol&gt;
  1990. &lt;p&gt;Есть и недостаток: новый подход требует изучения.&lt;/p&gt;
  1991. &lt;p&gt;На этом мы заканчиваем описание самых важных технических деталей разработки за август: модуль UIQt, его переработку, новый подход к разработке на основе функционала и его преимущества.&lt;/p&gt;</content></entry><entry><title>We’re back to social networks</title><link href="http://opengamestudio.org/back-to-social-networks.html" rel="alternate"></link><published>2016-08-18T00:00:00+03:00</published><updated>2016-08-18T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-08-18:/back-to-social-networks.html</id><summary type="html">&lt;p&gt;If you follow us on &lt;a href="https://www.facebook.com/groups/162611230470183/"&gt;Facebook&lt;/a&gt;, &lt;a href="https://twitter.com/OpenGameStudio"&gt;Twitter&lt;/a&gt;, or &lt;a href="https://new.vk.com/opengamestudo"&gt;VK&lt;/a&gt; you noticed we started to use them again. That's no coincidence: we're finally ready to communicate our progress verbally after 4 years of almost silent development.&lt;/p&gt;
  1992. &lt;p&gt;Follow us to stay up-to-date!&lt;/p&gt;</summary><content type="html">&lt;p&gt;If you follow us on &lt;a href="https://www.facebook.com/groups/162611230470183/"&gt;Facebook&lt;/a&gt;, &lt;a href="https://twitter.com/OpenGameStudio"&gt;Twitter&lt;/a&gt;, or &lt;a href="https://new.vk.com/opengamestudo"&gt;VK&lt;/a&gt; you noticed we started to use them again. That's no coincidence: we're finally ready to communicate our progress verbally after 4 years of almost silent development.&lt;/p&gt;
  1993. &lt;p&gt;Follow us to stay up-to-date!&lt;/p&gt;</content></entry><entry><title>Мы вернулись в социальные сети</title><link href="http://opengamestudio.org/back-to-social-networks-ru.html" rel="alternate"></link><published>2016-08-18T00:00:00+03:00</published><updated>2016-08-18T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-08-18:/back-to-social-networks-ru.html</id><summary type="html">&lt;p&gt;Если вы подписаны на нашу группу в &lt;a href="https://www.facebook.com/groups/162611230470183/"&gt;Facebook&lt;/a&gt;, &lt;a href="https://twitter.com/OpenGameStudio"&gt;Twitter&lt;/a&gt; или &lt;a href="https://new.vk.com/opengamestudo"&gt;VK&lt;/a&gt;, вы заметили, что мы начали использовать её снова. Это не случайно: мы наконец созрели для вербального общения после 4 лет молчаливой разработки.&lt;/p&gt;
  1994. &lt;p&gt;Подписывайтесь!&lt;/p&gt;</summary><content type="html">&lt;p&gt;Если вы подписаны на нашу группу в &lt;a href="https://www.facebook.com/groups/162611230470183/"&gt;Facebook&lt;/a&gt;, &lt;a href="https://twitter.com/OpenGameStudio"&gt;Twitter&lt;/a&gt; или &lt;a href="https://new.vk.com/opengamestudo"&gt;VK&lt;/a&gt;, вы заметили, что мы начали использовать её снова. Это не случайно: мы наконец созрели для вербального общения после 4 лет молчаливой разработки.&lt;/p&gt;
  1995. &lt;p&gt;Подписывайтесь!&lt;/p&gt;</content></entry><entry><title>Once Mahjong – always Mahjong</title><link href="http://opengamestudio.org/once-mahjong-always-mahjong.html" rel="alternate"></link><published>2016-08-10T00:00:00+03:00</published><updated>2016-08-10T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-08-10:/once-mahjong-always-mahjong.html</id><summary type="html">&lt;p&gt;We started Opensource Game Studio project a long time ago. We wanted to provide open source community with tools to create games. However, it was unclear what tools' purpose was. So we decided to start small: create a game first.&lt;/p&gt;
  1996. &lt;p&gt;It took us 3 years to reach the first goal …&lt;/p&gt;</summary><content type="html">&lt;p&gt;We started Opensource Game Studio project a long time ago. We wanted to provide open source community with tools to create games. However, it was unclear what tools' purpose was. So we decided to start small: create a game first.&lt;/p&gt;
  1997. &lt;p&gt;It took us 3 years to reach the first goal: we released OGS Mahjong 1.0 in 2012. Even for a hobby project (we spend about 40 hours a month) it's too long.&lt;/p&gt;
  1998. &lt;p&gt;Upon the game release we got it: &lt;strong&gt;Tools are means to save development time&lt;/strong&gt;.&lt;/p&gt;
  1999. &lt;p&gt;We spent 4 more years to develop them. Now is the time to prove they are worth every single day spent. How? We will &lt;strong&gt;recreate Mahjong solitaire mode&lt;/strong&gt; in just a few hours!&lt;/p&gt;
  2000. &lt;p&gt;Join our next live session in September.&lt;/p&gt;</content></entry><entry><title>Раз Маджонг – всегда Маджонг</title><link href="http://opengamestudio.org/once-mahjong-always-mahjong-ru.html" rel="alternate"></link><published>2016-08-10T00:00:00+03:00</published><updated>2016-08-10T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-08-10:/once-mahjong-always-mahjong-ru.html</id><summary type="html">&lt;p&gt;Мы начали проект Opensource Game Studio очень давно. Мы хотели дать сообществу свободного программного обеспечения средства для создания игр. Правда, тогда не было ясно, что они из себя должны представлять. Поэтому решили начать с малого: создать игру.&lt;/p&gt;
  2001. &lt;p&gt;Мы потратили 3 года для достижения этой цели: выпуск OGS Mahjong 1.0 …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Мы начали проект Opensource Game Studio очень давно. Мы хотели дать сообществу свободного программного обеспечения средства для создания игр. Правда, тогда не было ясно, что они из себя должны представлять. Поэтому решили начать с малого: создать игру.&lt;/p&gt;
  2002. &lt;p&gt;Мы потратили 3 года для достижения этой цели: выпуск OGS Mahjong 1.0 состоялся в 2012 году. Даже для хобби-проекта (мы тратим в среднем около 40 часов в месяц) это очень долго.&lt;/p&gt;
  2003. &lt;p&gt;После выпуска игры до нас дошло: &lt;strong&gt;Средства для создания игр должны экономить время разработки&lt;/strong&gt;.&lt;/p&gt;
  2004. &lt;p&gt;Мы потратили ещё 4 года на их разработку. Пришло время доказать, что они стоят каждого затраченного дня. Как? Мы &lt;strong&gt;воссоздадим режим "пасьянс Маджонг"&lt;/strong&gt; за считанные часы!&lt;/p&gt;
  2005. &lt;p&gt;Присоединяйтесь к нашему следующему прямому эфиру в сентябре.&lt;/p&gt;</content></entry><entry><title>May 2016 live session materials</title><link href="http://opengamestudio.org/ogs-editor-0.9.html" rel="alternate"></link><published>2016-05-29T00:00:00+03:00</published><updated>2016-05-29T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-05-29:/ogs-editor-0.9.html</id><summary type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/8gHYOkMRoos?list=PLWMTZqE4MAMKp3wP1N63xbdhdgfKi-d-J" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2006. &lt;p&gt;This time we have shown how to create a simple Domino based game. Below you can find all materials related to the game creation.&lt;/p&gt;
  2007. &lt;ol&gt;
  2008. &lt;li&gt;Editor 0.9 for Linux (Debian based), OS X (10.9+), Windows &lt;a title="SourceForge" href="https://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/49_2016-05-24_04-48-47_0.9.0/"&gt;is available at SourceForge&lt;/a&gt;. Simply unpack it and launch the run script.&lt;/li&gt;
  2009. &lt;li&gt;Domino project …&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/8gHYOkMRoos?list=PLWMTZqE4MAMKp3wP1N63xbdhdgfKi-d-J" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2010. &lt;p&gt;This time we have shown how to create a simple Domino based game. Below you can find all materials related to the game creation.&lt;/p&gt;
  2011. &lt;ol&gt;
  2012. &lt;li&gt;Editor 0.9 for Linux (Debian based), OS X (10.9+), Windows &lt;a title="SourceForge" href="https://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/49_2016-05-24_04-48-47_0.9.0/"&gt;is available at SourceForge&lt;/a&gt;. Simply unpack it and launch the run script.&lt;/li&gt;
  2013. &lt;li&gt;Domino project created during live session &lt;a title="GitHub" href="https://github.com/OGStudio/domino-livesession"&gt;is available at GitHub&lt;/a&gt;.&lt;/li&gt;
  2014. &lt;li&gt;Domino rehearsal videos referenced during live session &lt;a title="YouTube" href="https://www.youtube.com/playlist?list=PLWMTZqE4MAMKp3wP1N63xbdhdgfKi-d-J"&gt;are available at YouTube&lt;/a&gt;&lt;/li&gt;
  2015. &lt;li&gt;Domino rehearsal project referenced during live session &lt;a title="GitHub" href="https://github.com/OGStudio/domino-rehearsal"&gt;is available at GitHub&lt;/a&gt;.&lt;/li&gt;
  2016. &lt;/ol&gt;
  2017. &lt;p&gt;The next live session will be held in September 2016.&lt;/p&gt;</content></entry><entry><title>Материалы прямого эфира за май 2016</title><link href="http://opengamestudio.org/ogs-editor-0.9-ru.html" rel="alternate"></link><published>2016-05-29T00:00:00+03:00</published><updated>2016-05-29T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-05-29:/ogs-editor-0.9-ru.html</id><summary type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/8gHYOkMRoos?list=PLWMTZqE4MAMKp3wP1N63xbdhdgfKi-d-J" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2018. &lt;p&gt;В этот раз мы показали, как создать простую игру на основе Домино. Ниже приведены все материалы, связанные с созданием игры.&lt;/p&gt;
  2019. &lt;ol&gt;
  2020. &lt;li&gt;Редактор 0.9 для Linux (на основе Debian), OS X (10.9+), Windows &lt;a title="SourceForge" href="https://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/49_2016-05-24_04-48-47_0.9.0/"&gt;доступен на SourceForge&lt;/a&gt;. Просто распакуйте и запустите скрипт run.&lt;/li&gt;
  2021. &lt;li&gt;Проект Домино, созданный во время прямого эфира &lt;a title="GitHub" href="https://github.com/OGStudio/domino-livesession"&gt;доступен …&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/8gHYOkMRoos?list=PLWMTZqE4MAMKp3wP1N63xbdhdgfKi-d-J" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2022. &lt;p&gt;В этот раз мы показали, как создать простую игру на основе Домино. Ниже приведены все материалы, связанные с созданием игры.&lt;/p&gt;
  2023. &lt;ol&gt;
  2024. &lt;li&gt;Редактор 0.9 для Linux (на основе Debian), OS X (10.9+), Windows &lt;a title="SourceForge" href="https://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/49_2016-05-24_04-48-47_0.9.0/"&gt;доступен на SourceForge&lt;/a&gt;. Просто распакуйте и запустите скрипт run.&lt;/li&gt;
  2025. &lt;li&gt;Проект Домино, созданный во время прямого эфира &lt;a title="GitHub" href="https://github.com/OGStudio/domino-livesession"&gt;доступен на GitHub&lt;/a&gt;.&lt;/li&gt;
  2026. &lt;li&gt;Видео репетиции создания игры, на которые есть ссылки в прямом эфире, &lt;a title="YouTube" href="https://www.youtube.com/playlist?list=PLWMTZqE4MAMKp3wP1N63xbdhdgfKi-d-J"&gt;доступны на YouTube&lt;/a&gt;&lt;/li&gt;
  2027. &lt;li&gt;Проект Домино, созданный во время репетиции, &lt;a title="GitHub" href="https://github.com/OGStudio/domino-rehearsal"&gt;доступен на GitHub&lt;/a&gt;.&lt;/li&gt;
  2028. &lt;/ol&gt;</content></entry><entry><title>Live session: 28 May 2016</title><link href="http://opengamestudio.org/may-live-session-announcement.html" rel="alternate"></link><published>2016-05-17T00:00:00+03:00</published><updated>2016-05-17T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-05-17:/may-live-session-announcement.html</id><summary type="html">&lt;p&gt;We're glad to annouce that the &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; session will take place on &lt;a title="Local time" href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio+May+live+session&amp;iso=20160528T12&amp;p1=37&amp;ah=3"&gt;28 May 2016 at 12:00 CEST&lt;/a&gt;. Join us!&lt;/p&gt;</summary><content type="html">&lt;p&gt;We're glad to annouce that the &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; session will take place on &lt;a title="Local time" href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio+May+live+session&amp;iso=20160528T12&amp;p1=37&amp;ah=3"&gt;28 May 2016 at 12:00 CEST&lt;/a&gt;. Join us!&lt;/p&gt;</content></entry><entry><title>Прямой эфир: 28 мая 2016</title><link href="http://opengamestudio.org/may-live-session-announcement-ru.html" rel="alternate"></link><published>2016-05-17T00:00:00+03:00</published><updated>2016-05-17T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-05-17:/may-live-session-announcement-ru.html</id><summary type="html">&lt;p&gt;Мы рады сообщить, что трансляция &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; состоится &lt;a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=%D0%9C%D0%B0%D0%B9%D1%81%D0%BA%D0%B8%D0%B9+%D0%BF%D1%80%D1%8F%D0%BC%D0%BE%D0%B9+%D1%8D%D1%84%D0%B8%D1%80+Open+Game+Studio&amp;amp;iso=20160528T13&amp;amp;p1=166&amp;amp;ah=3"&gt;28 мая 2016 в 13:00 MSK&lt;/a&gt;. Присоединяйтесь!&lt;/p&gt;</summary><content type="html">&lt;p&gt;Мы рады сообщить, что трансляция &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; состоится &lt;a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=%D0%9C%D0%B0%D0%B9%D1%81%D0%BA%D0%B8%D0%B9+%D0%BF%D1%80%D1%8F%D0%BC%D0%BE%D0%B9+%D1%8D%D1%84%D0%B8%D1%80+Open+Game+Studio&amp;amp;iso=20160528T13&amp;amp;p1=166&amp;amp;ah=3"&gt;28 мая 2016 в 13:00 MSK&lt;/a&gt;. Присоединяйтесь!&lt;/p&gt;</content></entry><entry><title>May live session (Editor 0.9)</title><link href="http://opengamestudio.org/may-live-session-decision.html" rel="alternate"></link><published>2016-04-24T00:00:00+03:00</published><updated>2016-04-24T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-04-24:/may-live-session-decision.html</id><summary type="html">&lt;p&gt;As you know, the previously published roadmap assumed, that we would hold a live session in April and it would feature a ping-pong game created with Editor 0.9.&lt;/p&gt;
  2029. &lt;p&gt;We have to admit, our abilities to plan are not yet good enough. That's why the next live session will take …&lt;/p&gt;</summary><content type="html">&lt;p&gt;As you know, the previously published roadmap assumed, that we would hold a live session in April and it would feature a ping-pong game created with Editor 0.9.&lt;/p&gt;
  2030. &lt;p&gt;We have to admit, our abilities to plan are not yet good enough. That's why the next live session will take place by the end of May. The exact date will be announced later.&lt;/p&gt;
  2031. &lt;p&gt;Here's a short preview of the coming game:
  2032. &lt;iframe width="560" height="315" src="https://www.youtube.com/embed/V3EvCVPc6kg" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;/p&gt;</content></entry><entry><title>Майский прямой эфир (Редактор 0.9)</title><link href="http://opengamestudio.org/may-live-session-decision-ru.html" rel="alternate"></link><published>2016-04-24T00:00:00+03:00</published><updated>2016-04-24T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-04-24:/may-live-session-decision-ru.html</id><summary type="html">&lt;p&gt;Как вы знаете, ранее опубликованная дорожная карта предполагала, что в апреле будет прямой эфир, в котором с помощью Редактора 0.9 мы создадим игру пинг-понг.&lt;/p&gt;
  2033. &lt;p&gt;Мы должны признать, что наши способности к планированию всё ещё недостаточно высоки, поэтому следующий прямой эфир состоится в конце мая. Точную дату мы объявим позже …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Как вы знаете, ранее опубликованная дорожная карта предполагала, что в апреле будет прямой эфир, в котором с помощью Редактора 0.9 мы создадим игру пинг-понг.&lt;/p&gt;
  2034. &lt;p&gt;Мы должны признать, что наши способности к планированию всё ещё недостаточно высоки, поэтому следующий прямой эфир состоится в конце мая. Точную дату мы объявим позже.&lt;/p&gt;
  2035. &lt;p&gt;Вот пара моментов из будущей игры:
  2036. &lt;iframe width="560" height="315" src="https://www.youtube.com/embed/V3EvCVPc6kg" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;/p&gt;</content></entry><entry><title>"Rolling ball" live session videos and downloads</title><link href="http://opengamestudio.org/rolling-ball.html" rel="alternate"></link><published>2016-02-10T00:00:00+03:00</published><updated>2016-02-10T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-02-10:/rolling-ball.html</id><summary type="html">&lt;p&gt;Since we held 2 live sessions to create "Rolling ball" game, here are 2 YouTube videos of the process:&lt;/p&gt;
  2037. &lt;iframe width="560" height="315" src="https://www.youtube.com/embed/70Jny1xJxK8" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2038. &lt;iframe width="560" height="315" src="http://www.youtube.com/embed/851IlFT7y18" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2039. &lt;p&gt;"Rolling ball" game for Linux (Debian based), OS X (10.9+), Windows &lt;a title="SourceForge" href="http://sourceforge.net/projects/osrpgcreation/files/Games/RollingBall/"&gt;is available at SourceForge&lt;/a&gt;.
  2040. Simply unpack it and launch the run script.&lt;/p&gt;
  2041. &lt;p&gt;Editor 0.8 &lt;a title="SourceForge" href="http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/46_2016-01-30_22-20-41_0.8.0/"&gt;is available at SourceForge …&lt;/a&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;Since we held 2 live sessions to create "Rolling ball" game, here are 2 YouTube videos of the process:&lt;/p&gt;
  2042. &lt;iframe width="560" height="315" src="https://www.youtube.com/embed/70Jny1xJxK8" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2043. &lt;iframe width="560" height="315" src="http://www.youtube.com/embed/851IlFT7y18" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2044. &lt;p&gt;"Rolling ball" game for Linux (Debian based), OS X (10.9+), Windows &lt;a title="SourceForge" href="http://sourceforge.net/projects/osrpgcreation/files/Games/RollingBall/"&gt;is available at SourceForge&lt;/a&gt;.
  2045. Simply unpack it and launch the run script.&lt;/p&gt;
  2046. &lt;p&gt;Editor 0.8 &lt;a title="SourceForge" href="http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/46_2016-01-30_22-20-41_0.8.0/"&gt;is available at SourceForge&lt;/a&gt;, too.&lt;/p&gt;
  2047. &lt;p&gt;"Rolling ball" project for the Editor &lt;a title="GitHub" href="https://github.com/OGStudio/rollingBall.ogs/archive/master.zip"&gt;is available at GitHub&lt;/a&gt;.&lt;/p&gt;
  2048. &lt;p&gt;To open it in the Editor:&lt;/p&gt;
  2049. &lt;ul&gt;
  2050. &lt;li&gt;replace slideDown.ogs with rollingBall.ogs you downloaded&lt;/li&gt;
  2051. &lt;li&gt;rename rollingBall.ogs to slideDown.ogs&lt;/li&gt;
  2052. &lt;/ul&gt;
  2053. &lt;p&gt;Since live session took us so long, we decided to concentrate on polishing. Editor already has a lot of features, but their use is inconvenient. We will fix major obstacles for the next Editor release.&lt;/p&gt;</content></entry><entry><title>Запись прямого эфира "Катящийся мяч" и материалы</title><link href="http://opengamestudio.org/rolling-ball-ru.html" rel="alternate"></link><published>2016-02-10T00:00:00+03:00</published><updated>2016-02-10T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-02-10:/rolling-ball-ru.html</id><summary type="html">&lt;p&gt;Т.к. мы провели 2 прямые трансляции для создания игры "Катящийся мяч", ниже вы можете увидеть 2 записи этого процесса на YouTube:&lt;/p&gt;
  2054. &lt;iframe width="560" height="315" src="https://www.youtube.com/embed/70Jny1xJxK8" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2055. &lt;iframe width="560" height="315" src="http://www.youtube.com/embed/851IlFT7y18" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2056. &lt;p&gt;Игра "Катящийся мяч" для Linux (на основе Debian), OS X (10.9+), Windows &lt;a title="SourceForge" href="http://sourceforge.net/projects/osrpgcreation/files/Games/RollingBall/"&gt;доступна на SourceForge&lt;/a&gt;.
  2057. Просто распакуйте и запустите скрипт 'run'.&lt;/p&gt;
  2058. &lt;p&gt;Редактор 0.8 &lt;a title="SourceForge" href="http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/46_2016-01-30_22-20-41_0.8.0/"&gt;доступен тоже на …&lt;/a&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;Т.к. мы провели 2 прямые трансляции для создания игры "Катящийся мяч", ниже вы можете увидеть 2 записи этого процесса на YouTube:&lt;/p&gt;
  2059. &lt;iframe width="560" height="315" src="https://www.youtube.com/embed/70Jny1xJxK8" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2060. &lt;iframe width="560" height="315" src="http://www.youtube.com/embed/851IlFT7y18" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
  2061. &lt;p&gt;Игра "Катящийся мяч" для Linux (на основе Debian), OS X (10.9+), Windows &lt;a title="SourceForge" href="http://sourceforge.net/projects/osrpgcreation/files/Games/RollingBall/"&gt;доступна на SourceForge&lt;/a&gt;.
  2062. Просто распакуйте и запустите скрипт 'run'.&lt;/p&gt;
  2063. &lt;p&gt;Редактор 0.8 &lt;a title="SourceForge" href="http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/46_2016-01-30_22-20-41_0.8.0/"&gt;доступен тоже на SourceForge&lt;/a&gt;.&lt;/p&gt;
  2064. &lt;p&gt;Проект "Катящийся мяч" для Редактора &lt;a title="GitHub" href="https://github.com/OGStudio/rollingBall.ogs/archive/master.zip"&gt;доступен на GitHub&lt;/a&gt;.&lt;/p&gt;
  2065. &lt;p&gt;Чтобы открыть его в Редакторе:&lt;/p&gt;
  2066. &lt;ul&gt;
  2067. &lt;li&gt;замените slideDown.ogs загруженным rollingBall.ogs&lt;/li&gt;
  2068. &lt;li&gt;переименуйте rollingBall.ogs в slideDown.ogs&lt;/li&gt;
  2069. &lt;/ul&gt;
  2070. &lt;p&gt;Т.к. прямой эфир занял гораздо больше времени, чем мы планировали, мы решили сконцентрировать свои усилия на улучшении удобства редактора. Его возможности уже довольно обширны, но использовать их крайне неудобно. Наиболее серьезные из этих проблем мы планируем исправить в следующем релизе Редактора.&lt;/p&gt;</content></entry><entry><title>Game creation live session (part 2): 7 February 2016</title><link href="http://opengamestudio.org/rolling-ball-live-session-pt2.html" rel="alternate"></link><published>2016-02-02T00:00:00+03:00</published><updated>2016-02-02T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-02-02:/rolling-ball-live-session-pt2.html</id><summary type="html">&lt;p&gt;Unfortunately, we have failed to finish creation of the simple "Rolling ball" game in 3 hours. That's why we will hold the second &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; session on &lt;a title="Local time" href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio%3A+Game+creation+live+session%2C+part+2&amp;iso=20160207T12&amp;p1=37&amp;ah=3"&gt;7 February 2016 at 12:00 CET&lt;/a&gt;. Let's finish the game!&lt;/p&gt;</summary><content type="html">&lt;p&gt;Unfortunately, we have failed to finish creation of the simple "Rolling ball" game in 3 hours. That's why we will hold the second &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; session on &lt;a title="Local time" href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio%3A+Game+creation+live+session%2C+part+2&amp;iso=20160207T12&amp;p1=37&amp;ah=3"&gt;7 February 2016 at 12:00 CET&lt;/a&gt;. Let's finish the game!&lt;/p&gt;</content></entry><entry><title>Создание игры в прямом эфире (часть 2): 7 февраля 2016</title><link href="http://opengamestudio.org/rolling-ball-live-session-pt2-ru.html" rel="alternate"></link><published>2016-02-02T00:00:00+03:00</published><updated>2016-02-02T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-02-02:/rolling-ball-live-session-pt2-ru.html</id><summary type="html">&lt;p&gt;К сожалению, нам не удалось завершить создание простой игры "Катящийся мяч" за 3 часа. Поэтому вторая часть трансляции &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; состоится &lt;a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio%3A+%D0%9F%D1%80%D1%8F%D0%BC%D0%B0%D1%8F+%D1%82%D1%80%D0%B0%D0%BD%D1%81%D0%BB%D1%8F%D1%86%D0%B8%D1%8F+%D1%81%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D1%8F+%D0%B8%D0%B3%D1%80%D1%8B%2C+%D1%87%D0%B0%D1%81%D1%82%D1%8C+2&amp;amp;iso=20160207T14&amp;amp;p1=166&amp;amp;ah=3"&gt;7 февраля 2016 в 14:00 MSK&lt;/a&gt;. Давайте завершим игру!&lt;/p&gt;</summary><content type="html">&lt;p&gt;К сожалению, нам не удалось завершить создание простой игры "Катящийся мяч" за 3 часа. Поэтому вторая часть трансляции &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; состоится &lt;a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio%3A+%D0%9F%D1%80%D1%8F%D0%BC%D0%B0%D1%8F+%D1%82%D1%80%D0%B0%D0%BD%D1%81%D0%BB%D1%8F%D1%86%D0%B8%D1%8F+%D1%81%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D1%8F+%D0%B8%D0%B3%D1%80%D1%8B%2C+%D1%87%D0%B0%D1%81%D1%82%D1%8C+2&amp;amp;iso=20160207T14&amp;amp;p1=166&amp;amp;ah=3"&gt;7 февраля 2016 в 14:00 MSK&lt;/a&gt;. Давайте завершим игру!&lt;/p&gt;</content></entry><entry><title>Game creation live session: 31 January 2016</title><link href="http://opengamestudio.org/january-live-session-announcement.html" rel="alternate"></link><published>2016-01-25T00:00:00+03:00</published><updated>2016-01-25T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-01-25:/january-live-session-announcement.html</id><summary type="html">&lt;p&gt;We're glad to annouce that the &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; session will take place on &lt;a title="Local time" href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio%3A+Game+creation+live+session&amp;iso=20160131T12&amp;p1=37&amp;ah=3"&gt;31 January 2016 at 12:00 CET&lt;/a&gt;. Join us!&lt;/p&gt;</summary><content type="html">&lt;p&gt;We're glad to annouce that the &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; session will take place on &lt;a title="Local time" href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio%3A+Game+creation+live+session&amp;iso=20160131T12&amp;p1=37&amp;ah=3"&gt;31 January 2016 at 12:00 CET&lt;/a&gt;. Join us!&lt;/p&gt;</content></entry><entry><title>Создание игры в прямом эфире: 31 января 2016</title><link href="http://opengamestudio.org/january-live-session-announcement-ru.html" rel="alternate"></link><published>2016-01-25T00:00:00+03:00</published><updated>2016-01-25T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-01-25:/january-live-session-announcement-ru.html</id><summary type="html">&lt;p&gt;Мы рады сообщить, что трансляция &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; состоится &lt;a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio%3A+%D0%9F%D1%80%D1%8F%D0%BC%D0%B0%D1%8F+%D1%82%D1%80%D0%B0%D0%BD%D1%81%D0%BB%D1%8F%D1%86%D0%B8%D1%8F+%D1%81%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D1%8F+%D0%B8%D0%B3%D1%80%D1%8B&amp;amp;iso=20160131T14&amp;amp;p1=166&amp;amp;ah=3"&gt;31 января 2016 в 14:00 MSK&lt;/a&gt;. Присоединяйтесь!&lt;/p&gt;</summary><content type="html">&lt;p&gt;Мы рады сообщить, что трансляция &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; состоится &lt;a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Open+Game+Studio%3A+%D0%9F%D1%80%D1%8F%D0%BC%D0%B0%D1%8F+%D1%82%D1%80%D0%B0%D0%BD%D1%81%D0%BB%D1%8F%D1%86%D0%B8%D1%8F+%D1%81%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D1%8F+%D0%B8%D0%B3%D1%80%D1%8B&amp;amp;iso=20160131T14&amp;amp;p1=166&amp;amp;ah=3"&gt;31 января 2016 в 14:00 MSK&lt;/a&gt;. Присоединяйтесь!&lt;/p&gt;</content></entry><entry><title>SOON: Creating a simple game live (Editor 0.8)</title><link href="http://opengamestudio.org/january-live-session-decision.html" rel="alternate"></link><published>2016-01-21T00:00:00+03:00</published><updated>2016-01-21T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-01-21:/january-live-session-decision.html</id><summary type="html">&lt;p&gt;We are ready to present Editor 0.8 with Player. The live session will be held at &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; SOON. We will show you how to create a simple game with sounds from scratch. And this time it will not need an Editor to run.
  2071. The exact date and time is …&lt;/p&gt;</summary><content type="html">&lt;p&gt;We are ready to present Editor 0.8 with Player. The live session will be held at &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; SOON. We will show you how to create a simple game with sounds from scratch. And this time it will not need an Editor to run.
  2072. The exact date and time is to be announced in the coming days. Stay tuned!&lt;/p&gt;</content></entry><entry><title>СКОРО: Создание простой игры в прямом эфире (Редактор 0.8)</title><link href="http://opengamestudio.org/january-live-session-decision-ru.html" rel="alternate"></link><published>2016-01-21T00:00:00+03:00</published><updated>2016-01-21T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2016-01-21:/january-live-session-decision-ru.html</id><summary type="html">&lt;p&gt;Мы готовы предоставить вам Редактор 0.8 с Проигрывателем. Прямая трансляция будет проведена на &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; СКОРО. Мы покажем вам, как создать простую игру со звуком с нуля. И на этот раз она не будет требовать Редактора для работы.
  2073. Точную дату и время мы объявим в ближайшие дни. Оставайтесь на связи …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Мы готовы предоставить вам Редактор 0.8 с Проигрывателем. Прямая трансляция будет проведена на &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; СКОРО. Мы покажем вам, как создать простую игру со звуком с нуля. И на этот раз она не будет требовать Редактора для работы.
  2074. Точную дату и время мы объявим в ближайшие дни. Оставайтесь на связи!&lt;/p&gt;</content></entry><entry><title>Roadmap for 2016</title><link href="http://opengamestudio.org/2016-roadmap.html" rel="alternate"></link><published>2015-12-26T00:00:00+03:00</published><updated>2015-12-26T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-12-26:/2016-roadmap.html</id><summary type="html">&lt;p&gt;As you know, according to the &lt;a href="http://opengamestudio.org/2015-roadmap.html"&gt;previously published roadmap&lt;/a&gt;, we now have sound system in place. However, we decided to go further and implement the first version of Player. We wanted to get it done by December, but, unfortunately, more work resulted in the change of dates.&lt;/p&gt;
  2075. &lt;p&gt;Here's the revised …&lt;/p&gt;</summary><content type="html">&lt;p&gt;As you know, according to the &lt;a href="http://opengamestudio.org/2015-roadmap.html"&gt;previously published roadmap&lt;/a&gt;, we now have sound system in place. However, we decided to go further and implement the first version of Player. We wanted to get it done by December, but, unfortunately, more work resulted in the change of dates.&lt;/p&gt;
  2076. &lt;p&gt;Here's the revised roadmap for the first half of 2016:&lt;/p&gt;
  2077. &lt;ol&gt;
  2078. &lt;li&gt;Editor + Player 0.8.0 (January 2016): Sound system, Whac-a-mole game with sounds&lt;/li&gt;
  2079. &lt;li&gt;Editor + Player 0.9.0 (April 2016): Networking system, simple ping pong game for 2 players over the net&lt;/li&gt;
  2080. &lt;li&gt;Editor + Player 0.10.0 (July 2016): Polishing, "Shuan" prototype&lt;/li&gt;
  2081. &lt;/ol&gt;</content></entry><entry><title>Дорожная карта 2016</title><link href="http://opengamestudio.org/2016-roadmap-ru.html" rel="alternate"></link><published>2015-12-26T00:00:00+03:00</published><updated>2015-12-26T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-12-26:/2016-roadmap-ru.html</id><summary type="html">&lt;p&gt;Как вы знаете, согласно &lt;a href="http://opengamestudio.org/2015-roadmap-ru.html"&gt;ранее опубликованной дорожной карте&lt;/a&gt;, мы добавили звуковую систему. Тем не менее, мы решили пойти дальше и создать первую версию Проигрывателя. Мы хотели завершить его в декабре, но, к сожалению, изменение планов вылилось в изменение сроков.&lt;/p&gt;
  2082. &lt;p&gt;Представляем вам обновлённую дорожную карту на первую половину 2016:&lt;/p&gt;
  2083. &lt;ol&gt;
  2084. &lt;li&gt;Редактор + Проигрыватель …&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;p&gt;Как вы знаете, согласно &lt;a href="http://opengamestudio.org/2015-roadmap-ru.html"&gt;ранее опубликованной дорожной карте&lt;/a&gt;, мы добавили звуковую систему. Тем не менее, мы решили пойти дальше и создать первую версию Проигрывателя. Мы хотели завершить его в декабре, но, к сожалению, изменение планов вылилось в изменение сроков.&lt;/p&gt;
  2085. &lt;p&gt;Представляем вам обновлённую дорожную карту на первую половину 2016:&lt;/p&gt;
  2086. &lt;ol&gt;
  2087. &lt;li&gt;Редактор + Проигрыватель 0.8.0 (Январь 2016): Звуковая система, игра "Поймай крота" со звуком&lt;/li&gt;
  2088. &lt;li&gt;Редактор + Проигрыватель 0.9.0 (Апрель 2016): Сетевая система, простая игра ping pong для двух игроков по сети&lt;/li&gt;
  2089. &lt;li&gt;Редактор + Проигрыватель 0.10.0 (Июль 2016): Полировка, прототип игры "Шуан"&lt;/li&gt;
  2090. &lt;/ol&gt;</content></entry><entry><title>Live session video and downloads</title><link href="http://opengamestudio.org/livesession-materials-editor-07.html" rel="alternate"></link><published>2015-11-15T00:00:00+03:00</published><updated>2015-11-15T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-11-15:/livesession-materials-editor-07.html</id><summary type="html">&lt;p&gt;If you missed the live session, you can watch it here:
  2091. &lt;a href="https://www.livecoding.tv/video/kornerr/playlists/whac-a-mole-from-scratch/"&gt;https://www.livecoding.tv/video/kornerr/playlists/whac-a-mole-from-scratch/&lt;/a&gt;&lt;/p&gt;
  2092. &lt;p&gt;You can download the resulting project here:
  2093. &lt;a href="https://github.com/OGStudio/liveSessionWhacAMole/archive/master.zip"&gt;https://github.com/OGStudio/liveSessionWhacAMole/archive/master.zip&lt;/a&gt;&lt;/p&gt;
  2094. &lt;p&gt;The latest editor can be found here:
  2095. &lt;a href="http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/42_2015-11-13_08-16-46_0.7.4/"&gt;http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/42_2015-11-13_08-16-46_0 …&lt;/a&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;If you missed the live session, you can watch it here:
  2096. &lt;a href="https://www.livecoding.tv/video/kornerr/playlists/whac-a-mole-from-scratch/"&gt;https://www.livecoding.tv/video/kornerr/playlists/whac-a-mole-from-scratch/&lt;/a&gt;&lt;/p&gt;
  2097. &lt;p&gt;You can download the resulting project here:
  2098. &lt;a href="https://github.com/OGStudio/liveSessionWhacAMole/archive/master.zip"&gt;https://github.com/OGStudio/liveSessionWhacAMole/archive/master.zip&lt;/a&gt;&lt;/p&gt;
  2099. &lt;p&gt;The latest editor can be found here:
  2100. &lt;a href="http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/42_2015-11-13_08-16-46_0.7.4/"&gt;http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/42_2015-11-13_08-16-46_0.7.4/&lt;/a&gt;&lt;/p&gt;
  2101. &lt;p&gt;Download the editor archive, unpack, delete the wam.ogs folder, copy wam.ogs from the live session archive to the editor folder.&lt;/p&gt;
  2102. &lt;ul&gt;
  2103. &lt;li&gt;in Windows - run the &lt;code&gt;run.bat&lt;/code&gt; file.&lt;/li&gt;
  2104. &lt;li&gt;in Linux and OSX - run the &lt;code&gt;run&lt;/code&gt; file.&lt;/li&gt;
  2105. &lt;/ul&gt;</content></entry><entry><title>Видеозапись живой сессии и материалы</title><link href="http://opengamestudio.org/livesession-materials-editor-07-ru.html" rel="alternate"></link><published>2015-11-15T00:00:00+03:00</published><updated>2015-11-15T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-11-15:/livesession-materials-editor-07-ru.html</id><summary type="html">&lt;p&gt;Если вы пропустили живую сессию, вы можете посмотреть ее здесь:
  2106. &lt;a href="https://www.livecoding.tv/video/kornerr/playlists/whac-a-mole-from-scratch/"&gt;https://www.livecoding.tv/video/kornerr/playlists/whac-a-mole-from-scratch/&lt;/a&gt;&lt;/p&gt;
  2107. &lt;p&gt;Проект, созданный в ходе сессии, можно скачать здесь:
  2108. &lt;a href="https://github.com/OGStudio/liveSessionWhacAMole/archive/master.zip"&gt;https://github.com/OGStudio/liveSessionWhacAMole/archive/master.zip&lt;/a&gt;&lt;/p&gt;
  2109. &lt;p&gt;Последняя версия редактора доступна здесь:
  2110. &lt;a href="http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/42_2015-11-13_08-16-46_0.7.4/"&gt;http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/42_2015-11-13_08-16-46_0.7.4 …&lt;/a&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;Если вы пропустили живую сессию, вы можете посмотреть ее здесь:
  2111. &lt;a href="https://www.livecoding.tv/video/kornerr/playlists/whac-a-mole-from-scratch/"&gt;https://www.livecoding.tv/video/kornerr/playlists/whac-a-mole-from-scratch/&lt;/a&gt;&lt;/p&gt;
  2112. &lt;p&gt;Проект, созданный в ходе сессии, можно скачать здесь:
  2113. &lt;a href="https://github.com/OGStudio/liveSessionWhacAMole/archive/master.zip"&gt;https://github.com/OGStudio/liveSessionWhacAMole/archive/master.zip&lt;/a&gt;&lt;/p&gt;
  2114. &lt;p&gt;Последняя версия редактора доступна здесь:
  2115. &lt;a href="http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/42_2015-11-13_08-16-46_0.7.4/"&gt;http://sourceforge.net/projects/osrpgcreation/files/Editor/jenkins/42_2015-11-13_08-16-46_0.7.4/&lt;/a&gt;&lt;/p&gt;
  2116. &lt;p&gt;Скачайте редактор, разархивируйте, удалите папку wam.ogs из редактора, скопируйте папку wam.ogs из архива живой сессии в папку редактора.&lt;/p&gt;
  2117. &lt;ul&gt;
  2118. &lt;li&gt;в Windows - запустите файл &lt;code&gt;run.bat&lt;/code&gt;.&lt;/li&gt;
  2119. &lt;li&gt;в Linux и OSX - запустите файл &lt;code&gt;run&lt;/code&gt;.&lt;/li&gt;
  2120. &lt;/ul&gt;</content></entry><entry><title>Creating a simple game live: 15 November 2015</title><link href="http://opengamestudio.org/livesession-editor-07.html" rel="alternate"></link><published>2015-11-09T00:00:00+03:00</published><updated>2015-11-09T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-11-09:/livesession-editor-07.html</id><summary type="html">&lt;p&gt;We're glad to annouce that the &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; session will take place on &lt;a title="Local time" href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Whac-a-mole+game+from+scratch+live&amp;amp;iso=20151115T12&amp;amp;p1=37&amp;amp;ah=3"&gt;15 November 2015 at 12:00 CET&lt;/a&gt;. Join us!&lt;/p&gt;</summary><content type="html">&lt;p&gt;We're glad to annouce that the &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; session will take place on &lt;a title="Local time" href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Whac-a-mole+game+from+scratch+live&amp;amp;iso=20151115T12&amp;amp;p1=37&amp;amp;ah=3"&gt;15 November 2015 at 12:00 CET&lt;/a&gt;. Join us!&lt;/p&gt;</content></entry><entry><title>Создание простой игры в прямом эфире: 15 ноября 2015</title><link href="http://opengamestudio.org/livesession-editor-07-ru.html" rel="alternate"></link><published>2015-11-09T00:00:00+03:00</published><updated>2015-11-09T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-11-09:/livesession-editor-07-ru.html</id><summary type="html">&lt;p&gt;Мы рады сообщить, что трансляция &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; состоится &lt;a title="Локальное время" href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Whac-a-mole+game+from+scratch+live&amp;amp;iso=20151115T14&amp;amp;p1=166&amp;amp;ah=3"&gt;15 ноября 2015 в 14:00 MSK&lt;/a&gt;. Присоединяйтесь!&lt;/p&gt;</summary><content type="html">&lt;p&gt;Мы рады сообщить, что трансляция &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; состоится &lt;a title="Локальное время" href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Whac-a-mole+game+from+scratch+live&amp;amp;iso=20151115T14&amp;amp;p1=166&amp;amp;ah=3"&gt;15 ноября 2015 в 14:00 MSK&lt;/a&gt;. Присоединяйтесь!&lt;/p&gt;</content></entry><entry><title>SOON: Creating a simple game live (Editor 0.7)</title><link href="http://opengamestudio.org/soon-game-creation-editor-07.html" rel="alternate"></link><published>2015-11-02T00:00:00+03:00</published><updated>2015-11-02T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-11-02:/soon-game-creation-editor-07.html</id><summary type="html">&lt;p&gt;As we have promised, we are ready to give you Editor 0.7 which is capable of creating the complete test chamber. However, after recreating the test chamber ourselves, it became clear that:&lt;/p&gt;
  2121. &lt;ol&gt;
  2122. &lt;li&gt;it takes more than 8 hours to recreate it (too long)&lt;/li&gt;
  2123. &lt;li&gt;it's inappropriate to be presented in …&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;p&gt;As we have promised, we are ready to give you Editor 0.7 which is capable of creating the complete test chamber. However, after recreating the test chamber ourselves, it became clear that:&lt;/p&gt;
  2124. &lt;ol&gt;
  2125. &lt;li&gt;it takes more than 8 hours to recreate it (too long)&lt;/li&gt;
  2126. &lt;li&gt;it's inappropriate to be presented in the form of an article (too boring)&lt;/li&gt;
  2127. &lt;/ol&gt;
  2128. &lt;p&gt;Therefore we decided to hold a live session at &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; SOON to show you how to create a simple &lt;a title="Whac-a-mole" href="http://google.com/search?q=whac+a+mole"&gt;whac-a-mole like game&lt;/a&gt; from scratch.&lt;/p&gt;
  2129. &lt;p&gt;Currently we are busy making final preparations, so we'll tell you the exact time and date this week. Stay tuned!&lt;/p&gt;</content></entry><entry><title>СКОРО: Создание простой игры в прямом эфире (Редактор 0.7)</title><link href="http://opengamestudio.org/soon-game-creation-editor-07-ru.html" rel="alternate"></link><published>2015-11-02T00:00:00+03:00</published><updated>2015-11-02T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-11-02:/soon-game-creation-editor-07-ru.html</id><summary type="html">&lt;p&gt;Как и было обещано, мы готовы предоставить вам Редактор 0.7, с помощью которого можно создать тестовый цех. Тем не менее, после воссоздания цеха стало ясно, что:&lt;/p&gt;
  2130. &lt;ol&gt;
  2131. &lt;li&gt;это занимает более 8 часов (слишком долго)&lt;/li&gt;
  2132. &lt;li&gt;описание в виде статьи не подходит по формату (слишком скучно)&lt;/li&gt;
  2133. &lt;/ol&gt;
  2134. &lt;p&gt;Поэтому мы решили провести прямую трансляцию …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Как и было обещано, мы готовы предоставить вам Редактор 0.7, с помощью которого можно создать тестовый цех. Тем не менее, после воссоздания цеха стало ясно, что:&lt;/p&gt;
  2135. &lt;ol&gt;
  2136. &lt;li&gt;это занимает более 8 часов (слишком долго)&lt;/li&gt;
  2137. &lt;li&gt;описание в виде статьи не подходит по формату (слишком скучно)&lt;/li&gt;
  2138. &lt;/ol&gt;
  2139. &lt;p&gt;Поэтому мы решили провести прямую трансляцию на &lt;a title="LiveCoding" href="https://www.livecoding.tv/kornerr"&gt;LiveCoding&lt;/a&gt; СКОРО, чтобы показать, как создать простую &lt;a title="Whac-a-mole" href="http://google.com/search?q=whac+a+mole"&gt;игру типа "поймай крота"&lt;/a&gt; с нуля.&lt;/p&gt;
  2140. &lt;p&gt;Сейчас мы заняты последними приготовлениями, поэтому точные дату и время мы сообщим на этой неделе. Оставайтесь на связи!&lt;/p&gt;</content></entry><entry><title>Desura no more, hello Humble Bundle Widget</title><link href="http://opengamestudio.org/bye-desura-hello-humblebundle.html" rel="alternate"></link><published>2015-07-23T00:00:00+03:00</published><updated>2015-07-23T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-07-23:/bye-desura-hello-humblebundle.html</id><summary type="html">&lt;p&gt;After the recent bankruptcy of Desura's parent company, we decided, that we need a new place for our Deluxe version. Something better, more modern and more trustworthy. We have chosen the Humble Widget, with which you can buy the deluxe version of the game without leaving our site.&lt;/p&gt;
  2141. &lt;p&gt;Here it …&lt;/p&gt;</summary><content type="html">&lt;p&gt;After the recent bankruptcy of Desura's parent company, we decided, that we need a new place for our Deluxe version. Something better, more modern and more trustworthy. We have chosen the Humble Widget, with which you can buy the deluxe version of the game without leaving our site.&lt;/p&gt;
  2142. &lt;p&gt;Here it is:&lt;/p&gt;
  2143. &lt;iframe src="https://www.humblebundle.com/widget/v2/product/ogsmahjong/ySGF3h34?theme=transparent-light" width="526" height="325" style="border: none;" scrolling="no" frameborder="0"&gt;&lt;/iframe&gt;
  2144. &lt;p&gt;We haven't received a single penny from Desura (due to the minimal cache out limitations), but if you bought the deluxe version from them and experiencing any problems with downloading it (right now we see no problems with that), send us a letter, tell your name on Desura, we'll figure something out.&lt;/p&gt;</content></entry><entry><title>Прощай, Desura. Здравствуй, Humble Bundle Widget</title><link href="http://opengamestudio.org/bye-desura-hello-humblebundle-ru.html" rel="alternate"></link><published>2015-07-23T00:00:00+03:00</published><updated>2015-07-23T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-07-23:/bye-desura-hello-humblebundle-ru.html</id><summary type="html">&lt;p&gt;После недавнего банкротства родительской компании сервиса Desura мы пришли к выводу, что нам необходима новая площадка для распространения Deluxe-версии игры. Более современная, удобная, надежная.
  2145. Наш выбор пал на Humble Widget, благодаря которому вы можете приобрести Deluxe-версию игры прямо у нас на сайте.&lt;/p&gt;
  2146. &lt;p&gt;Вот он:&lt;/p&gt;
  2147. &lt;iframe src="https://www.humblebundle.com/widget/v2/product/ogsmahjong/ySGF3h34?theme=transparent-light" width="526" height="325" style="border: none;" scrolling="no" frameborder="0"&gt;&lt;/iframe&gt;
  2148. &lt;p&gt;К сожалению, мы не получили от …&lt;/p&gt;</summary><content type="html">&lt;p&gt;После недавнего банкротства родительской компании сервиса Desura мы пришли к выводу, что нам необходима новая площадка для распространения Deluxe-версии игры. Более современная, удобная, надежная.
  2149. Наш выбор пал на Humble Widget, благодаря которому вы можете приобрести Deluxe-версию игры прямо у нас на сайте.&lt;/p&gt;
  2150. &lt;p&gt;Вот он:&lt;/p&gt;
  2151. &lt;iframe src="https://www.humblebundle.com/widget/v2/product/ogsmahjong/ySGF3h34?theme=transparent-light" width="526" height="325" style="border: none;" scrolling="no" frameborder="0"&gt;&lt;/iframe&gt;
  2152. &lt;p&gt;К сожалению, мы не получили от Desura ни копейки (из-за минимального порога вывода средств, которого мы не достигли), однако, если вы приобретали Deluxe-версию OGS Mahjong на Desura и испытываете проблемы с ее скачиванием (в настоящее время проблем не обнаружено), напишите нам, указав свое имя на Desura, и мы что-нибудь придумаем.&lt;/p&gt;</content></entry><entry><title>Test chamber for everyone (Editor 0.7.0)</title><link href="http://opengamestudio.org/test-chamber-for-everyone.html" rel="alternate"></link><published>2015-07-22T00:00:00+03:00</published><updated>2015-07-22T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-07-22:/test-chamber-for-everyone.html</id><summary type="html">&lt;p&gt;As you know, the main goal of Editor 0.7.0 is the ability to create the &lt;a title="Test chamber" href="https://youtu.be/9_6seUWcPbU" target="_blank"&gt;test chamber&lt;/a&gt; with it. It needs Actions' system and a few stability fixes for that. We are going to publish a detailed article describing how to create the test chamber, too, so that …&lt;/p&gt;</summary><content type="html">&lt;p&gt;As you know, the main goal of Editor 0.7.0 is the ability to create the &lt;a title="Test chamber" href="https://youtu.be/9_6seUWcPbU" target="_blank"&gt;test chamber&lt;/a&gt; with it. It needs Actions' system and a few stability fixes for that. We are going to publish a detailed article describing how to create the test chamber, too, so that anyone could create their own test chamber!&lt;/p&gt;
  2153. &lt;p&gt;We estimate to complete it in October.&lt;/p&gt;</content></entry><entry><title>Тестовый цех каждому (Редактор 0.7.0)</title><link href="http://opengamestudio.org/test-chamber-for-everyone-ru.html" rel="alternate"></link><published>2015-07-22T00:00:00+03:00</published><updated>2015-07-22T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-07-22:/test-chamber-for-everyone-ru.html</id><summary type="html">&lt;p&gt;Как вы знаете, основная цель Редактора 0.7.0 - это возможность создать &lt;a title="Тестовый цех" href="https://youtu.be/9_6seUWcPbU" target="_blank"&gt;тестовый цех&lt;/a&gt; с помощью него. Редактору не хватает системы Действий и исправления некоторых ошибок для этого. Помимо выпуска Редактора мы опубликуем подробную статью, описывающую создание тестового цеха, чтобы каждый мог создать себе свой тестовый цех!&lt;/p&gt;
  2154. &lt;p&gt;Мы планируем завершить …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Как вы знаете, основная цель Редактора 0.7.0 - это возможность создать &lt;a title="Тестовый цех" href="https://youtu.be/9_6seUWcPbU" target="_blank"&gt;тестовый цех&lt;/a&gt; с помощью него. Редактору не хватает системы Действий и исправления некоторых ошибок для этого. Помимо выпуска Редактора мы опубликуем подробную статью, описывающую создание тестового цеха, чтобы каждый мог создать себе свой тестовый цех!&lt;/p&gt;
  2155. &lt;p&gt;Мы планируем завершить его в Октябре.&lt;/p&gt;</content></entry><entry><title>Roadmap for 2015-2016</title><link href="http://opengamestudio.org/2015-roadmap.html" rel="alternate"></link><published>2015-07-19T00:00:00+03:00</published><updated>2015-07-19T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-07-19:/2015-roadmap.html</id><summary type="html">&lt;p&gt;As promised, we have come up with a list of milestones and their approximate dates for the coming year:&lt;/p&gt;
  2156. &lt;ol&gt;
  2157. &lt;li&gt;Editor 0.7.0 (October 2015) - Actions' system: we recreate the &lt;a title="Test chamber" href="https://youtu.be/9_6seUWcPbU" target="_blank"&gt;test chamber&lt;/a&gt;&lt;/li&gt;
  2158. &lt;li&gt;Editor 0.8.0 (December 2015) - Sound system&lt;/li&gt;
  2159. &lt;li&gt;Editor 0.9.0 (February 2016) - Particles' system and minimal …&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;p&gt;As promised, we have come up with a list of milestones and their approximate dates for the coming year:&lt;/p&gt;
  2160. &lt;ol&gt;
  2161. &lt;li&gt;Editor 0.7.0 (October 2015) - Actions' system: we recreate the &lt;a title="Test chamber" href="https://youtu.be/9_6seUWcPbU" target="_blank"&gt;test chamber&lt;/a&gt;&lt;/li&gt;
  2162. &lt;li&gt;Editor 0.8.0 (December 2015) - Sound system&lt;/li&gt;
  2163. &lt;li&gt;Editor 0.9.0 (February 2016) - Particles' system and minimal UI&lt;/li&gt;
  2164. &lt;li&gt;Editor 0.10.0, Player 0.1.0 (April 2016) - Player to play what Editor produced: we create Shuan prototype with our engine&lt;/li&gt;
  2165. &lt;li&gt;Editor 0.11.0, Player 0.2.0 (June 2016) - Networking: we create Classic 4-player Mahjong prototype&lt;/li&gt;
  2166. &lt;/ol&gt;
  2167. &lt;p&gt;These approximate dates presume one coder spends 40 hours a month. That's about 1 work week at full-time job. Not much, but that's the only time we have.&lt;/p&gt;
  2168. &lt;p&gt;We will post more details about Editor 0.7.0 shortly: we need to decide what features deserve 80 hours of our time for the next 2 months.&lt;/p&gt;</content></entry><entry><title>Дорожная карта 2015-2016</title><link href="http://opengamestudio.org/2015-roadmap-ru.html" rel="alternate"></link><published>2015-07-19T00:00:00+03:00</published><updated>2015-07-19T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-07-19:/2015-roadmap-ru.html</id><summary type="html">&lt;p&gt;Как и было обещано, мы составили список вех и их примерные даты на ближайший год:&lt;/p&gt;
  2169. &lt;ol&gt;
  2170. &lt;li&gt;Редактор 0.7.0 (Октябрь 2015) - Система действий: мы воссоздаём &lt;a title="Тестовый цех" href="https://youtu.be/9_6seUWcPbU" target="_blank"&gt;тестовый цех&lt;/a&gt;&lt;/li&gt;
  2171. &lt;li&gt;Редактор 0.8.0 (Декабрь 2015) - Звуковая система&lt;/li&gt;
  2172. &lt;li&gt;Редактор 0.9.0 (Февраль 2016) - Система частиц и минимальный интерфейс пользователя (UI)&lt;/li&gt;
  2173. &lt;li&gt;Редактор 0 …&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;p&gt;Как и было обещано, мы составили список вех и их примерные даты на ближайший год:&lt;/p&gt;
  2174. &lt;ol&gt;
  2175. &lt;li&gt;Редактор 0.7.0 (Октябрь 2015) - Система действий: мы воссоздаём &lt;a title="Тестовый цех" href="https://youtu.be/9_6seUWcPbU" target="_blank"&gt;тестовый цех&lt;/a&gt;&lt;/li&gt;
  2176. &lt;li&gt;Редактор 0.8.0 (Декабрь 2015) - Звуковая система&lt;/li&gt;
  2177. &lt;li&gt;Редактор 0.9.0 (Февраль 2016) - Система частиц и минимальный интерфейс пользователя (UI)&lt;/li&gt;
  2178. &lt;li&gt;Редактор 0.10.0, Проигрыватель 0.1.0 (Апрель 2016) - Проигрыватель воспроизводит созданное Редактором: мы создаём прототип Шуана на нашем движке&lt;/li&gt;
  2179. &lt;li&gt;Редактор 0.11.0, Проигрыватель 0.2.0 (Июнь 2016) - Поддержка сети: мы создаём прототип классического Маджонга для 4-х игроков&lt;/li&gt;
  2180. &lt;/ol&gt;
  2181. &lt;p&gt;Эти примерные даты предполагают трату 40 часов в месяц одним программистом. Это около 1 рабочей недели. Не много, но это всё время, что у нас есть.&lt;/p&gt;
  2182. &lt;p&gt;Мы сообщим больше деталей о Редакторе 0.7.0 чуть позже: нам нужно решить, какие возможности заслуживают 80 часов нашего времени в следующие 2 месяца.&lt;/p&gt;</content></entry><entry><title>Editor 0.6.0</title><link href="http://opengamestudio.org/editor-06.html" rel="alternate"></link><published>2015-06-28T00:00:00+03:00</published><updated>2015-06-28T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-06-28:/editor-06.html</id><summary type="html">&lt;p&gt;We completed Editor 0.6.0. You can &lt;a title="Editor 0.6.0" href="https://youtu.be/q85GcC6l4Tw" target="_blank"&gt;see 0.6.0 in action here&lt;/a&gt;. &lt;/p&gt;
  2183. &lt;p&gt;Editor 0.6.0 got the following new features:&lt;/p&gt;
  2184. &lt;ol&gt;
  2185. &lt;li&gt;Camera and light node positioning&lt;/li&gt;
  2186. &lt;li&gt;Node rotation along X axis&lt;/li&gt;
  2187. &lt;li&gt;Node scripting support&lt;/li&gt;
  2188. &lt;li&gt;Thumbnail dialog to preview models when editing scene node model properties&lt;/li&gt;
  2189. &lt;li&gt;Node copying …&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;p&gt;We completed Editor 0.6.0. You can &lt;a title="Editor 0.6.0" href="https://youtu.be/q85GcC6l4Tw" target="_blank"&gt;see 0.6.0 in action here&lt;/a&gt;. &lt;/p&gt;
  2190. &lt;p&gt;Editor 0.6.0 got the following new features:&lt;/p&gt;
  2191. &lt;ol&gt;
  2192. &lt;li&gt;Camera and light node positioning&lt;/li&gt;
  2193. &lt;li&gt;Node rotation along X axis&lt;/li&gt;
  2194. &lt;li&gt;Node scripting support&lt;/li&gt;
  2195. &lt;li&gt;Thumbnail dialog to preview models when editing scene node model properties&lt;/li&gt;
  2196. &lt;li&gt;Node copying and pasting&lt;/li&gt;
  2197. &lt;li&gt;Node selection by LMB click in the scene&lt;/li&gt;
  2198. &lt;li&gt;Window geometry and state restoration after restart&lt;/li&gt;
  2199. &lt;/ol&gt;
  2200. &lt;p&gt;We don't have 0.7.0 completion date at the moment, because we decided to take some time to set up a roadmap for Shuan and Mahjong 2. Once done, we will share 0.7.0 completion date and its feature list along with the roadmap.&lt;/p&gt;</content></entry><entry><title>Редактор 0.6.0</title><link href="http://opengamestudio.org/editor-06-ru.html" rel="alternate"></link><published>2015-06-28T00:00:00+03:00</published><updated>2015-06-28T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-06-28:/editor-06-ru.html</id><summary type="html">&lt;p&gt;Мы завершили работу над версией 0.6.0 редактора. Вы можете &lt;a title="Editor 0.6.0" href="https://youtu.be/q85GcC6l4Tw" target="_blank"&gt;увидеть 0.6.0 в действии здесь&lt;/a&gt;. &lt;/p&gt;
  2201. &lt;p&gt;Список новых возможностей Редактора 0.6.0:&lt;/p&gt;
  2202. &lt;ol&gt;
  2203. &lt;li&gt;Позиционирование узлов с камерой и светом&lt;/li&gt;
  2204. &lt;li&gt;Вращение узлов по оси X&lt;/li&gt;
  2205. &lt;li&gt;Поддержка скриптов у узлов&lt;/li&gt;
  2206. &lt;li&gt;Диалог для предпросмотра моделей при редактировании моделей у узла&lt;/li&gt;
  2207. &lt;li&gt;Копирование …&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;p&gt;Мы завершили работу над версией 0.6.0 редактора. Вы можете &lt;a title="Editor 0.6.0" href="https://youtu.be/q85GcC6l4Tw" target="_blank"&gt;увидеть 0.6.0 в действии здесь&lt;/a&gt;. &lt;/p&gt;
  2208. &lt;p&gt;Список новых возможностей Редактора 0.6.0:&lt;/p&gt;
  2209. &lt;ol&gt;
  2210. &lt;li&gt;Позиционирование узлов с камерой и светом&lt;/li&gt;
  2211. &lt;li&gt;Вращение узлов по оси X&lt;/li&gt;
  2212. &lt;li&gt;Поддержка скриптов у узлов&lt;/li&gt;
  2213. &lt;li&gt;Диалог для предпросмотра моделей при редактировании моделей у узла&lt;/li&gt;
  2214. &lt;li&gt;Копирование и вставка узлов&lt;/li&gt;
  2215. &lt;li&gt;Выбор узла с помощью клика мышью в сцене&lt;/li&gt;
  2216. &lt;li&gt;Восстановление позиции и состояния окна после перезапуска&lt;/li&gt;
  2217. &lt;/ol&gt;
  2218. &lt;p&gt;На текущий момент у нас нет даты завершения 0.7.0, потому что мы решили взять паузу и потратить некоторое время на составление дорожной карты для Shuan и Mahjong 2. Как только мы её закончим, мы расскажем и о возможностях 0.7.0, и о дате завершения 0.7.0, и о самой дорожной карте.&lt;/p&gt;</content></entry><entry><title>Editor 0.5.0 and plans for 0.6.0</title><link href="http://opengamestudio.org/editor-06-roadmap.html" rel="alternate"></link><published>2015-04-15T00:00:00+03:00</published><updated>2015-04-15T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-04-15:/editor-06-roadmap.html</id><summary type="html">&lt;p&gt;We completed Editor 0.5.0. As it was planned, it has scene node tree editing, property browser, and Qt5 support. You can &lt;a title="Editor 0.5.0" href="https://youtu.be/Vb2Q6IuQDbo" target="_blank"&gt;see 0.5.0 in action here&lt;/a&gt;. &lt;/p&gt;
  2219. &lt;p&gt;Also, we have just started Editor 0.6.0 development.&lt;/p&gt;
  2220. &lt;p&gt;Editor 0.6.0 planned features:&lt;/p&gt;
  2221. &lt;ol&gt;
  2222. &lt;li&gt;Camera node editing&lt;/li&gt;
  2223. &lt;li&gt;Light …&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;p&gt;We completed Editor 0.5.0. As it was planned, it has scene node tree editing, property browser, and Qt5 support. You can &lt;a title="Editor 0.5.0" href="https://youtu.be/Vb2Q6IuQDbo" target="_blank"&gt;see 0.5.0 in action here&lt;/a&gt;. &lt;/p&gt;
  2224. &lt;p&gt;Also, we have just started Editor 0.6.0 development.&lt;/p&gt;
  2225. &lt;p&gt;Editor 0.6.0 planned features:&lt;/p&gt;
  2226. &lt;ol&gt;
  2227. &lt;li&gt;Camera node editing&lt;/li&gt;
  2228. &lt;li&gt;Light node editing&lt;/li&gt;
  2229. &lt;li&gt;Node rotation editing&lt;/li&gt;
  2230. &lt;li&gt;Node scripting support&lt;/li&gt;
  2231. &lt;li&gt;Thumbnail dialog to preview materials and models when editing scene node material and model properties&lt;/li&gt;
  2232. &lt;li&gt;Copying and pasting of scene nodes&lt;/li&gt;
  2233. &lt;li&gt;Scene node selection by clicking a mouse in the scene&lt;/li&gt;
  2234. &lt;/ol&gt;
  2235. &lt;p&gt;We estimate to complete it in August.&lt;/p&gt;</content></entry><entry><title>Редактор 0.5.0 и планы для 0.6.0</title><link href="http://opengamestudio.org/editor-06-roadmap-ru.html" rel="alternate"></link><published>2015-04-15T00:00:00+03:00</published><updated>2015-04-15T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-04-15:/editor-06-roadmap-ru.html</id><summary type="html">&lt;p&gt;Мы завершили работу над версией 0.5.0 редактора. Как было запланировано, эта версия содержит редактирование узлов сцены, браузер свойств, поддеркжу Qt5. Вы можете &lt;a title="Editor 0.5.0" href="https://youtu.be/Vb2Q6IuQDbo" target="_blank"&gt;увидеть 0.5.0 в действии здесь&lt;/a&gt;. &lt;/p&gt;
  2236. &lt;p&gt;Также мы только что начали разработку Редактора 0.6.0.&lt;/p&gt;
  2237. &lt;p&gt;Запланированные возможности Редактора 0.6.0:&lt;/p&gt;
  2238. &lt;ol&gt;
  2239. &lt;li&gt;Редактирование узлов с …&lt;/li&gt;&lt;/ol&gt;</summary><content type="html">&lt;p&gt;Мы завершили работу над версией 0.5.0 редактора. Как было запланировано, эта версия содержит редактирование узлов сцены, браузер свойств, поддеркжу Qt5. Вы можете &lt;a title="Editor 0.5.0" href="https://youtu.be/Vb2Q6IuQDbo" target="_blank"&gt;увидеть 0.5.0 в действии здесь&lt;/a&gt;. &lt;/p&gt;
  2240. &lt;p&gt;Также мы только что начали разработку Редактора 0.6.0.&lt;/p&gt;
  2241. &lt;p&gt;Запланированные возможности Редактора 0.6.0:&lt;/p&gt;
  2242. &lt;ol&gt;
  2243. &lt;li&gt;Редактирование узлов с камерой&lt;/li&gt;
  2244. &lt;li&gt;Редактирование узлов со светом&lt;/li&gt;
  2245. &lt;li&gt;Редактирование вращения узлов&lt;/li&gt;
  2246. &lt;li&gt;Поддержка скриптов у узлов&lt;/li&gt;
  2247. &lt;li&gt;Диалог для предпросмотра моделей и материалов при редактировании моделей и материалов у узла&lt;/li&gt;
  2248. &lt;li&gt;Копирование и вставка узлов&lt;/li&gt;
  2249. &lt;li&gt;Выбор узла с помощью клика мышью в сцене&lt;/li&gt;
  2250. &lt;/ol&gt;
  2251. &lt;p&gt;Мы планируем завершить его в августе.&lt;/p&gt;</content></entry><entry><title>Editor 0.4.0 and plans for 0.5.0</title><link href="http://opengamestudio.org/editor-0.4.0-and-0.5.0-plans.html" rel="alternate"></link><published>2015-03-07T00:00:00+03:00</published><updated>2015-03-07T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-03-07:/editor-0.4.0-and-0.5.0-plans.html</id><summary type="html">&lt;p&gt;We completed Editor 0.4.0 in January. As it was planned, it only contains
  2252. basic abilities to open and save a project. The major goal was to make MJIN,
  2253. Python and Qt work together (we were unable to use PyQt or PySide due to
  2254. technical difficulties).&lt;/p&gt;
  2255. &lt;p&gt;You can &lt;a title="Editor 0.4.0" href="http://youtu.be/3cqiTIjWwA8" target="_blank"&gt;see …&lt;/a&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;We completed Editor 0.4.0 in January. As it was planned, it only contains
  2256. basic abilities to open and save a project. The major goal was to make MJIN,
  2257. Python and Qt work together (we were unable to use PyQt or PySide due to
  2258. technical difficulties).&lt;/p&gt;
  2259. &lt;p&gt;You can &lt;a title="Editor 0.4.0" href="http://youtu.be/3cqiTIjWwA8" target="_blank"&gt;see 0.4.0 in action here&lt;/a&gt;. &lt;/p&gt;
  2260. &lt;p&gt;We started Editor 0.5.0 development in February. It's 45% ready at the moment.&lt;/p&gt;
  2261. &lt;p&gt;Editor 0.5.0 planned features:&lt;/p&gt;
  2262. &lt;ol&gt;
  2263. &lt;li&gt;Scene node tree editing&lt;/li&gt;
  2264. &lt;li&gt;Property browser with nodes' position and model editing&lt;/li&gt;
  2265. &lt;li&gt;Qt5 support for the sake of easy building on various Linux distributions&lt;/li&gt;
  2266. &lt;/ol&gt;
  2267. &lt;p&gt;We estimate to complete it in April.&lt;/p&gt;</content></entry><entry><title>Редактор 0.4.0 и планы для 0.5.0</title><link href="http://opengamestudio.org/editor-0.4.0-and-0.5.0-plans-ru.html" rel="alternate"></link><published>2015-03-07T00:00:00+03:00</published><updated>2015-03-07T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-03-07:/editor-0.4.0-and-0.5.0-plans-ru.html</id><summary type="html">&lt;p&gt;Мы завершили работу над версией 0.4.0 редактора в январе. Как было
  2268. запланировано, эта версия содержит лишь базовые возможности открыть и
  2269. сохранить проект. Основная цель была в том, чтобы подружить MJIN, Python и Qt
  2270. (в частности, по ряду технических причин мы не смогли использовать PyQt
  2271. или PySide).&lt;/p&gt;
  2272. &lt;p&gt;Вы можете …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Мы завершили работу над версией 0.4.0 редактора в январе. Как было
  2273. запланировано, эта версия содержит лишь базовые возможности открыть и
  2274. сохранить проект. Основная цель была в том, чтобы подружить MJIN, Python и Qt
  2275. (в частности, по ряду технических причин мы не смогли использовать PyQt
  2276. или PySide).&lt;/p&gt;
  2277. &lt;p&gt;Вы можете &lt;a title="Editor 0.4.0" href="http://youtu.be/3cqiTIjWwA8" target="_blank"&gt;увидеть 0.4.0 в действии здесь&lt;/a&gt;. &lt;/p&gt;
  2278. &lt;p&gt;Мы начали разработку Редактора 0.5.0 в феврале, на текущий момент сделаны
  2279. 45% работ.&lt;/p&gt;
  2280. &lt;p&gt;Запланированные возможности Редактора 0.5.0:&lt;/p&gt;
  2281. &lt;ol&gt;
  2282. &lt;li&gt;Редактирование дерева узлов сцены&lt;/li&gt;
  2283. &lt;li&gt;Браузер свойств с редактированием позиции и модели узла&lt;/li&gt;
  2284. &lt;li&gt;Поддержка Qt5 с целью простоты сборки на различных дистрибутивах Linux&lt;/li&gt;
  2285. &lt;/ol&gt;
  2286. &lt;p&gt;Мы планируем завершить его в апреле.&lt;/p&gt;</content></entry><entry><title>Editor roadmap for 0.4.0</title><link href="http://opengamestudio.org/editor-0.4.0-plans.html" rel="alternate"></link><published>2015-01-13T00:00:00+03:00</published><updated>2015-01-13T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-01-13:/editor-0.4.0-plans.html</id><summary type="html">&lt;p&gt;The development of Editor 0.3.0 showed us, that usage of custom GUI was not a perfect idea. A few months ago, custom GUI seemed as a simpler way to do things, but it turned out to lack many little features, that are crucial if you're planning to make …&lt;/p&gt;</summary><content type="html">&lt;p&gt;The development of Editor 0.3.0 showed us, that usage of custom GUI was not a perfect idea. A few months ago, custom GUI seemed as a simpler way to do things, but it turned out to lack many little features, that are crucial if you're planning to make a convenient tool.&lt;/p&gt;
  2287. &lt;p&gt;In the end, we decided to do what we wanted to do in the first place - to use Qt library as the GUI library for our editor.&lt;/p&gt;
  2288. &lt;p&gt;So, we'll rewrite the Editor with Qt interface and a little bit refreshed project concept in mind. We plan to release the editor with new GUI and a set of basic features like loading and saving projects in May.&lt;/p&gt;</content></entry><entry><title>План задач для Editor 0.4.0</title><link href="http://opengamestudio.org/editor-0.4.0-plans-ru.html" rel="alternate"></link><published>2015-01-13T00:00:00+03:00</published><updated>2015-01-13T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2015-01-13:/editor-0.4.0-plans-ru.html</id><summary type="html">&lt;p&gt;Разработка Editor 0.3.0 показала нам, что использование кастомного GUI не было столь хорошей идеей, как показалось на первый взгляд. Несмотря на более простую реализацию, кастомный GUI лишен множества мелких достоинств, которые оказываются практически необходимы, если задаться целью сделать удобный инструмент.&lt;/p&gt;
  2289. &lt;p&gt;В конце концов, мы решили сделать то, что …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Разработка Editor 0.3.0 показала нам, что использование кастомного GUI не было столь хорошей идеей, как показалось на первый взгляд. Несмотря на более простую реализацию, кастомный GUI лишен множества мелких достоинств, которые оказываются практически необходимы, если задаться целью сделать удобный инструмент.&lt;/p&gt;
  2290. &lt;p&gt;В конце концов, мы решили сделать то, что хотели сделать с самого начала - использовать для редактора библиотеку Qt.&lt;/p&gt;
  2291. &lt;p&gt;В ближайшее время мы перепишем редактор, имея в виду Qt-интерфейс и немного обновленную концепцию проекта. Мы планируем выпустить редактор с новым интерфейсом и набором базовых функций, таких как загрузка и сохранение проектов, в мае.&lt;/p&gt;</content></entry><entry><title>And another year has passed</title><link href="http://opengamestudio.org/2014-another-year-passed.html" rel="alternate"></link><published>2014-12-31T12:00:00+03:00</published><updated>2014-12-31T12:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2014-12-31:/2014-another-year-passed.html</id><summary type="html">&lt;p&gt;Hello!&lt;/p&gt;
  2292. &lt;p&gt;So, this year comes to the end. There were very little publications from us during this year. We haven't stopped working, but right now our work is in the phase, when we have nothing to show. And the spare time of the team members is rarely more then 30-40 …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Hello!&lt;/p&gt;
  2293. &lt;p&gt;So, this year comes to the end. There were very little publications from us during this year. We haven't stopped working, but right now our work is in the phase, when we have nothing to show. And the spare time of the team members is rarely more then 30-40 hours a month.&lt;/p&gt;
  2294. &lt;p&gt;But our work continues. And you can find out some details in the new &lt;a href="{filename}/articles/2018-12-30-exaggerated-expectations.md"&gt;article from our programmer Michael Kapelko&lt;/a&gt;.&lt;/p&gt;</content></entry><entry><title>И вот прошел еще один год</title><link href="http://opengamestudio.org/2014-another-year-passed-ru.html" rel="alternate"></link><published>2014-12-31T12:00:00+03:00</published><updated>2014-12-31T12:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2014-12-31:/2014-another-year-passed-ru.html</id><summary type="html">&lt;p&gt;Привет.&lt;/p&gt;
  2295. &lt;p&gt;Подходит к концу год, в течение которого мы разместили на сайте рекордно малое количество новостей. Мы не прекратили разработку, однако пока она находится в фазе "показывать нечего", а свободного времени, которое можно уделять проекту, у каждого из его участников сейчас найдется редко больше чем 30-40 часов в месяц.&lt;/p&gt;
  2296. &lt;p&gt;Но …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Привет.&lt;/p&gt;
  2297. &lt;p&gt;Подходит к концу год, в течение которого мы разместили на сайте рекордно малое количество новостей. Мы не прекратили разработку, однако пока она находится в фазе "показывать нечего", а свободного времени, которое можно уделять проекту, у каждого из его участников сейчас найдется редко больше чем 30-40 часов в месяц.&lt;/p&gt;
  2298. &lt;p&gt;Но работа продвигается, и подробнее о ней расскажет &lt;a href="{filename}/articles/2018-12-30-exaggerated-expectations-ru.md"&gt;статья нашего программиста Михаила Капелько&lt;/a&gt;.&lt;/p&gt;</content></entry><entry><title>User survey ends today</title><link href="http://opengamestudio.org/user-servey-finish-promise.html" rel="alternate"></link><published>2014-12-31T00:00:00+03:00</published><updated>2014-12-31T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2014-12-31:/user-servey-finish-promise.html</id><summary type="html">&lt;p&gt;About a year ago, we started the user survey, in order to find out what do
  2299. you think of the Open Source in general and about our project in particular.
  2300. Today we're closing this survey. It took time, but we've got plenty of answers.
  2301. Thank you for that.&lt;/p&gt;
  2302. &lt;p&gt;We'll share …&lt;/p&gt;</summary><content type="html">&lt;p&gt;About a year ago, we started the user survey, in order to find out what do
  2303. you think of the Open Source in general and about our project in particular.
  2304. Today we're closing this survey. It took time, but we've got plenty of answers.
  2305. Thank you for that.&lt;/p&gt;
  2306. &lt;p&gt;We'll share our thought about the results of the survey in one of the future
  2307. articles.&lt;/p&gt;
  2308. &lt;p&gt;After the survey, every one of you has got the code. With this code, you'll be
  2309. able to access the alpha test of the OGS Mahjong 2, as soon as we'll be ready
  2310. to start it (i can't promise anything, but we're planning to do it in 2015).
  2311. Also, you'll be able to choose between the deluxe version of OGS Mahjong 2 and
  2312. the deluxe version of Shuan, as soon as we'll be ready to release these games.&lt;/p&gt;
  2313. &lt;p&gt;We wish you all a Happy New Year. Thank you for being with us. See you next year.&lt;/p&gt;
  2314. &lt;p&gt;P.S. If you have lost your code - write us a letter, we'll figure something out.&lt;/p&gt;</content></entry><entry><title>Окончание опроса</title><link href="http://opengamestudio.org/user-servey-finish-promise-ru.html" rel="alternate"></link><published>2014-12-31T00:00:00+03:00</published><updated>2014-12-31T00:00:00+03:00</updated><author><name>Opensource Game Studio</name></author><id>tag:opengamestudio.org,2014-12-31:/user-servey-finish-promise-ru.html</id><summary type="html">&lt;p&gt;Около года назад мы начинали опрос, с помощью которого планировали узнать ваше
  2315. отношение к Open Source вообще и нашему проекту в частности. Сегодня мы его
  2316. завершаем. Ответы набирались довольно медленно, но в целом мы собрали довольно
  2317. приличное ответов, за что вам очень благодарны.&lt;/p&gt;
  2318. &lt;p&gt;Сделанными выводами мы обязательно поделимся в одной …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Около года назад мы начинали опрос, с помощью которого планировали узнать ваше
  2319. отношение к Open Source вообще и нашему проекту в частности. Сегодня мы его
  2320. завершаем. Ответы набирались довольно медленно, но в целом мы собрали довольно
  2321. приличное ответов, за что вам очень благодарны.&lt;/p&gt;
  2322. &lt;p&gt;Сделанными выводами мы обязательно поделимся в одной из ближайших статей.&lt;/p&gt;
  2323. &lt;p&gt;После завершения опроса для каждого из его участников был сгенерирован код.
  2324. С помощью этого кода вы сможете получить доступ к альфа-тестированию
  2325. OGS Mahjong 2, как только оно начнется (не могу обещать конкретных дат, но мы
  2326. планируем запустить его в 2015 году), а также, на выбор, deluxe-версию
  2327. OGS Mahjong 2 либо deluxe-версию Shuan, когда разработка этих игр будет
  2328. закончена.&lt;/p&gt;
  2329. &lt;p&gt;От всей души желаем всем счастливого Нового Года. Спасибо что вы с нами.
  2330. И до встречи в следующем году.&lt;/p&gt;
  2331. &lt;p&gt;P.S. Если вы участвовали в опросе и потеряли свой код - напишите нам, и мы что-нибудь придумаем.&lt;/p&gt;</content></entry></feed>