Git Product home page Git Product logo

guiora's Introduction

Guiora

Guiora is a simple GUI library for Deno. It is working with SDL2 and Rust.

Installation

Start by cloning the repository:

git clone

Then, you need to compile the Rust code:

cd guiora
make all --lib=1 --release=1

Note: This will create a target folder and a bin folder where the compiled lib file will be as libguiora.so.

Usage

Note: Guiora is still in development, so the API is not fully finished.

const guiora = new Guiora("Guiora", 800, 600);
guiora.run();

This will create a window with the title "Guiora" and a size of 800x600. In the window, you will see a red square that will move along your mouse.

You can modify the run() function in the Guiora class to create your own objects.

Then you can run your code with:

deno run -A --unstable mod.ts

Examples

Mouse

The mouse struct is the following:

class GuioraMouse {
    x: number;
    y: number;
    state: number;
}

You can access the mouse directly from the Guiora instance you created:

const mouse = guiora.mouse;

There is prebuilt functions to know if a button is pressed or not:

Function Description
isLeftPressed() Returns true if the left button is pressed.
isMiddlePressed() Returns true if the middle button is pressed.
isRightPressed() Returns true if the right button is pressed.
isPressed() Returns true if a button is pressed.
isButtonPressed(button: number) Returns true if the button is pressed.
isReleased() Returns true if buttons is not pressed.

You can listen to mouse events with the following code:

mouse.onClick((e) => {
  ...
});

mouse.onPress((e) => {
  ...
}

mouse.onRelease((e) => {
  ...
});

mouse.onMove((e) => {
  ...
});

mouse.onDrag((e) => {
  ...
});

mouse.onLeftClick((e) => {
  ...
});

mouse.onRightClick((e) => {
  ...
});

mouse.onMiddleClick((e) => {
  ...
});

Color

Guiora has a built-in color struct:

class GuioraColor {
    r: number;
    g: number;
    b: number;
    a: number;
}

You can creata custom color with the following code:

const color = new GuioraColor(255, 0, 0, 255);
// or
const color = Colors.fromHex("#ff0000"); // #rrggbb or #rrggbbaa

Also, there is a built-in color palette you can access it with the Colors object:

Color Value
Colors.Black new GuioraColor(0, 0, 0, 255)
Colors.White new GuioraColor(255, 255, 255, 255)
Colors.Red new GuioraColor(255, 0, 0, 255)
Colors.Green new GuioraColor(0, 255, 0, 255)
Colors.Blue new GuioraColor(0, 0, 255, 255)
Colors.Yellow new GuioraColor(255, 255, 0, 255)
Colors.Magenta new GuioraColor(255, 0, 255, 255)
Colors.Cyan new GuioraColor(0, 255, 255, 255)
Colors.Gray new GuioraColor(128, 128, 128, 255)
Colors.Silver new GuioraColor(192, 192, 192, 255)
Colors.Maroon new GuioraColor(128, 0, 0, 255)
Colors.Olive new GuioraColor(128, 128, 0, 255)
Colors.Lime new GuioraColor(0, 128, 0, 255)
Colors.Teal new GuioraColor(0, 128, 128, 255)
Colors.Navy new GuioraColor(0, 0, 128, 255)
Colors.Purple new GuioraColor(128, 0, 128, 255)
Colors.Orange new GuioraColor(255, 165, 0, 255)
Colors.Transparent new GuioraColor(0, 0, 0, 0)

The Colors object has also some prebuilt functions:

Function Description
fromHex(hex: string) Returns a color from a hex string.
fromRgb(r: number, g: number, b: number) Returns a color from RGB values.
fromRgba(r: number, g: number, b: number, a: number) Returns a color from RGBA values.
fromHsl(h: number, s: number, l: number) Returns a color from HSL values.

Canvas

The canvas is the main object you will use to draw on the screen. It is defined by the following struct:

class GuioraCanvas {
    width: number;
    height: number;
}

You can access the canvas directly from the Guiora instance you created:

const canvas = guiora.canvas;

The canvas has the following functions:

Function Description
push(...element: GuioraElement[]) Pushes elements to the canvas.
pop() Removes the last element from the canvas.
shift() Removes the first element from the canvas.
unshift(element: GuioraElement) Adds an element to the beginning of the canvas.
remove(element: GuioraElement) Removes an element from the canvas.
clear() Removes all elements from the canvas.

Element

An element is the base class for all the drawable objects. It is defined by the following struct:

class GuioraElement {
    x: number;
    y: number;
    color: GuioraColor;
    visible: boolean;
    render: (lib: Guiora) => void;
    update: (lib: Guiora) => void;
}

The render function is called every frame to draw the element on the screen. The update function is called every frame to update the element.

There are some prebuilt elements you can use:

Element Description
GuioraRect A rectangle.
GuioraButton A button.

Rectangle

A rectangle is defined by the following struct:

class GuioraRect extends GuioraElement {
    width: number;
    height: number;
}
const rect = new GuioraRect(0, 0, 100, 50, Colors.Red);
canvas.push(rect);

Button

A button is defined by the following struct:

class GuioraButton extends GuioraRect {
    text: string;
}
const button = new GuioraButton(
  0, 0, 100, 50, Colors.Red, "Click me!"
);
canvas.push(button);

Note: The text is not rendered now, but it will be in the future.

Like the mouse, there is prebuilt functions to know if a button is pressed or not:

Function Description
isHovered(mouse: GuioraMouse) Returns true if the button is hovered.
isReleased(mouse: GuioraMouse) Returns true if the button is released.

You can listen to button events with the following code:

button.onClick((e) => {
  ...
});

button.onLeftClick((e) => {
  ...
});

button.onMiddleClick((e) => {
  ...
});

button.onRightClick((e) => {
  ...
});

button.onRelease((e) => {
  ...
});

button.onHover((e) => {
  ...
});

button.onEnter((e) => {
  ...
});

button.onLeave((e) => {
  ...
});

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Author

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

guiora's People

Contributors

hokanosekai avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.