npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@hi-ashleyj/llama

v0.13.2

Published

A (Very Incomplete) 2D Canvas Game Engine powered by Svelte

Downloads

28

Readme

Llama - A 2D Canvas game engine built with Svelte + SvelteKit

This thing isn't ready - and probably will never be fully done. This is just as far as I've gotten.

Seriously, don't use this yet.

A Good Starting point.

I'd recommend starting with a sveltekit project configured with TS. That's what I use basically 100% of the time.
To get started:

/// +page.svelte
<script lang="ts">

    import { SensibleDefaultStyles, Game } from "@hi-ashleyj/llama";

</script>

// Auto-configure a wrapper and some global styles. Optional.
<SensibleDefaultStyles> 

    <Game>
        
    </Game>

</SensibleDefaultStyles>

<style>

    @font-face {
        // ...define fonts
    }

</style>

Asset Handling

Let's prepare some asset handling. I recommend doing this in it's own component. The following pattern preloads assets with the page:

/// +page.svelte

    import { SensibleDefaultStyles, Game } from "@hi-ashleyj/llama";
+   import Assets from "./Assets.svelte";

    ...

    <Game>

+       <Assets />

    </Game>
/// Assets.svelte

<script lang="ts">

    import { AssetPool, ImageAsset, AudioBufferedAsset, AudioMediaAsset } from "@hi-ashleyj/llama/resources";

    // ... use standard Vite imports here 

</script>

<AssetPool>

    <ImageAsset url={...} />
    ...

</AssetPool>

Layer Setup

A Llama game is made of multiple 2D Layers. I highly recommend creating a folder for all layers, then having an additional folder per layer.
We'll create an additional layers.ts file in order to glob import the layer components, as Vite only supports globbing in TS files.

  /src/routes
+ ├── layers
+ │   ├── background
+ │   ├── ui
+ │   └── layers.ts
  ├── +page.svelte
  └── Assets.svelte
// layers/layers.ts
import type { SvelteComponent } from "svelte";

const imports = import.meta.glob<{default: SvelteComponent}>("./**/_Layer.svelte", {eager: true});
export const layers: SvelteComponent[] = Object.keys(imports).map((it) => imports[it].default);
/// +page.svelte

    import Assets from "./Assets.svelte";
+   import { layers } from "./layers/layers.js";

    ...

    <Game>

+       {#each layers as layer}
+           <svelte:component this={layer}>
+       {/each}

    </Game>

Layers and Scenes

Let's get started with actually creating some Layers now.
You'll probably find it faster to also setup Scenes now as well.
Let's start by making a file to store potential scenes in.

  /src/lib
+ └── constants.ts
/// src/lib/constants.ts

export const SCENES = {
    // examples
    MENU: "default", // Scene "default" will be shown on load.
    GAME: "game"
    ...
} as const;

And now, let's create a layer, and add the scene switcher to it.

  /src/routes
  ├── layers
  │   ├── background
+ │   │   └── _Layer.svelte
  │   └── ...
  └── ...
/// layers/background/_Layer.svelte

<script lang="ts">

    import { Layer } from "@hi-ashleyj/llama";
    import { SceneSwitcher } from "@hi-ashleyj/llama/scenes";
    import { SCENES } from "$lib/constants.js";

    // ... import individual scene components here

</script>

<Layer name="background" zIndex={0}>
    <SceneSwitcher scenes={{
        ...
    }}/>
</Layer>

And that's all we need to create a layer. We should also probably setup a scene.
Here's an example for how to add the Menu and Game scenes we hinted earlier:

  /src/routes
  ├── layers
  │   ├── background
  │   │   ├── _Layer.svelte
+ │   │   ├── Game.svelte
+ │   │   └── Menu.svelte
  │   └── ...
  └── ...
/// layers/background/_Layer.svelte

    import { SCENES } from "$lib/constants.js";

    // ... import individual scene components here
+   import Menu from "./Menu.svelte"
+   import Game from "./Game.svelte"

    ...

    <SceneSwitcher scenes={{
+       [ SCENES.MENU ]: Menu,
+       [ SCENES.GAME ]: Game
    }}/>

Note that both Menu and Game are empty, as an empty .svelte file is still a valid Svelte component.

Scene Transition / Changing Scene

One thing left to do before scenes can be changed is to consume the SceneTransition component somewhere.
I like to do this in a layer above all others. Here's a basic fade animation as the scene changes.

  /src/routes
  ├── layers
+ │   ├── transition
+ │   │   └── _Layer.svelte
  │   └── ...
  └── ...
/// layers/transition/_Layer.svelte

<script lang="ts">

    import { Layer } from "@hi-ashleyj/llama";
    import { SceneSwitcher } from "@hi-ashleyj/llama/scenes";
    import { Node, Area, Opacity } from "@hi-ashleyj/llama/primitives";
    import { Rectangle } from "@hi-ashleyj/llama/drawables";

</script>

<Layer name="transition" zIndex={99}>
    <SceneTransition let:normalized duration={800}>
        <Node x={0} y={0}>
            <Area w={0} h={0}>
                <Opacity opacity={normalized}>
                    <Rectangle fill="black" />
                </Opacity>
            </Area>
        </Node>
    </SceneTransition>
</Layer>

Note that due to the glob-based importing, this should be sucked into the project automagically.

Primitives (@hi-ashleyj/llama/primitives)

These are the basic building blocks for displaying anything.
Thing of these as points, and bounding boxes.

Empty

Component that literally does nothing. Use for wrapping multiple similar items together.

Node

Base entry point. Wrapper around a single item in the game (think GameObject in unity or Empty in Blender).

type Props = {
    x: number;
    y: number;
}

Area

Use within a Node. Specifies a bounding box for a drawable.
Position of the parent is considered the top-left corner of the area.
If center is true, it will consider parent position to be the center of the area.

type Props = {
    w: number;
    h: number;
    center: boolean = false;
    x?: number; // Optional offset
    y?: number; // Optional offset
}

Translate

Use within a Node. Offsets the position of the node for all children.

type Props = {
    x: number;
    y: number;
}

Inset

Use within an Area. Works similar to CSS inset prop. Use to move the bounding box of an Area towards the middle (use negative to extend).

type Props = {
    top: number = 0;
    left: number = 0;
    right: number = 0;
    bottom: number = 0;
}

Opacity

Adjusts the opacity for all drawn children. This is set absolutely, so nesting 0.5 with another 0.5 does not make a 0.25 opaque child.
If opacity is 0 or less, drawing of children (including other opacity nodes) is skipped.
Opacity will be clamped to 1.

type Props = {
    opacity: number; // Between 0 and 1.
}

Rotate

Rotates the element by some number of degrees.
Rotates around the top left corner of the element, unless centered is specified.

type Props = {
    centered: boolean = false;
    degrees: number;
}