Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

2017-09-mjin-world-birth.md 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Title: The birth of MJIN world
  2. Date: 2017-09-10 00:00
  3. Category: News
  4. Slug: mjin-world-birth
  5. Lang: en
  6. ![An explosion giving birth to something new](../../images/2017-09-mjin-world-birth.png)
  7. This article describes the birth of MJIN world in August 2017.
  8. **mjin-player**
  9. As you know, [we spent July to research scripting](scripting-research.html). We found a solution that satisfies the following criteria. Scripts should:
  10. 1. run unchanged on all supported platforms
  11. 1. allow extending C++ code
  12. We have verified the second criterion by writing a sample application. The first criterion was taken for granted because it SHOULD be true.
  13. At the time, we saw two ways to verify the first criterion:
  14. 1. create one sample application for each platform to verify scripting only
  15. 1. create a single cross-platform application, which can run any code
  16. We chose the second approach because it is more beneficial in the long run. As you might have guessed, [mjin-player](https://bitbucket.org/ogstudio/mjin-player) is that application.
  17. 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.
  18. **mjin-application**
  19. This set of rules for MJIN projects is packaged into [mjin-application](https://bitbucket.org/ogstudio/mjin-application). 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.
  20. **MJIN world**
  21. So what is [MJIN world](https://bitbucket.org/ogstudio/mjin)? 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.
  22. That's it for describing the birth of MJIN world in August 2017.