0.1.0-alpha.30 • Published 7 months ago

piximoroxel8ai v0.1.0-alpha.30

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

piximoroxel8ai

NPM version Node.js CI gitHub license Code Quality: Javascript Total Alerts

Run PixiJS games written for MoroboxAI.

Why

MoroboxAI by itself is a generic framework that can run any JavaScript code that exports a boot function.

PixiMoroxel8AI is a layer of abstraction on top of that and:

  • Uses PixiJS as a renderer
  • Loads and runs your game written in JavaScript
  • Implements all the boilerplate for being compatible with MoroboxAI
  • Provides a simple interface for controlling the graphics, audio, and inputs

To sum up, PixiMoroxel8AI takes care of all the boilerplate required for initializing and running your game in MoroboxAI, and lets you focus on coding the game logic in JavaScript.

Minimal game

The sample folder contains a sample of a minimal game for PixiMoroxel8AI:

sample/
├─ assets/
│  ├─ bunny.png
├─ game.js
├─ game.ts
├─ header.yml

As you can see, the folder contains both game.ts, and game.js.

Your game can be written with TypeScript for a more type safe coding, but it must be converted to plain JavaScript for being loadable by PixiMoroxel8AI.

The header.yml defines how the game is loaded:

  • boot must be the name of a JS module loaded in the page, that exports a boot function compatible with MoroboxAI, here PixiMoroxel8AI.
  • main is simply the relative path to your game script.
# Defines the JS module used to boot the game
boot: PixiMoroxel8AI
# Defines the main script of the game
main: game.js

Now, all that remains is index.html which is a minimalist page loading MoroboxAI + PixiMoroxel8AI and initializing the game:

<head>
    <title>PixiMoroxel8AI Sample</title>
    <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/moroboxai-player-web@latest/lib/umd/moroboxai-player-web.min.js"></script>
    <!-- Use https://cdn.jsdelivr.net/npm/piximoroxel8ai@latest/lib/umd/piximoroxel8ai.min.js in production -->
    <script type="text/javascript" src="./lib/umd/piximoroxel8ai.js"></script>
</head>

<body>
    <div id="player"></div>
</body>
<script type="text/javascript">
    (function () {
        console.log(`moroboxai-player-web v${MoroboxAIPlayer.VERSION}`);

        player = MoroboxAIPlayer.init(document.getElementById("player"), {
            // Replace with URL to your header.yml
            url: `./sample`,
            resizable: false,
            autoPlay: true,
            onReady: () => console.log("ready")
        });
    })();
</script>

<style type="text/css">
    body {
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #player {
        background-color: black;
        background-size: cover;
        width: 512px;
        height: 512px;
    }
</style>

</html>

This is all that is required for embedding and running your game in a webpage.

Run on the web

Testing on the web requires you to run a local HTTP server to avoid CORS errors when loading local files.

For that you can install http-server:

npm install http-server -g

Open a command prompt in the piximoroxel8ai folder and run:

http-server

Now you can access the page on localhost and the port opened by http-server.

License

This content is released under the MIT License.

0.1.0-alpha.30

7 months ago

0.1.0-alpha.23

7 months ago

0.1.0-alpha.25

7 months ago

0.1.0-alpha.24

7 months ago

0.1.0-alpha.27

7 months ago

0.1.0-alpha.26

7 months ago

0.1.0-alpha.29

7 months ago

0.1.0-alpha.28

7 months ago

0.1.0-alpha.21

8 months ago

0.1.0-alpha.10

8 months ago

0.1.0-alpha.20

8 months ago

0.1.0-alpha.12

8 months ago

0.1.0-alpha.22

8 months ago

0.1.0-alpha.11

8 months ago

0.1.0-alpha.14

8 months ago

0.1.0-alpha.13

8 months ago

0.1.0-alpha.16

8 months ago

0.1.0-alpha.9

8 months ago

0.1.0-alpha.15

8 months ago

0.1.0-alpha.8

8 months ago

0.1.0-alpha.18

8 months ago

0.1.0-alpha.17

8 months ago

0.1.0-alpha.5

8 months ago

0.1.0-alpha.19

8 months ago

0.1.0-alpha.4

8 months ago

0.1.0-alpha.7

8 months ago

0.1.0-alpha.6

8 months ago

0.1.0-alpha.3

9 months ago

0.1.0-alpha.2

9 months ago

0.1.0-alpha.1

9 months ago