Skip to content

Isangeles/stone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

Stone is simple library that allows rendering Tiled maps with Pixel library.

Originally created as part of Mural GUI.

Usage

First, make sure you have dependencies required by Pixel.

Get sources from git:

go get -u github.com/isangeles/stone

Create map:

tmxMap, err := stone.NewMap("path/to/map.tmx")
if err != nil {
   panic(fmt.Errorf("Unable to create map: %v", err))
}

Draw map in Pixel window:

for !win.Closed() {
    // ...
    pos = pixel.V(0, 0) // e.g. camera pos
    tmxMap.Draw(win, pixel.IM.Moved(pos))
}

Check example package for more examples.

Contributing

You are welcome to contribute to project development.

If you looking for things to do, then check TODO file or contact maintainer(ds@isangeles.dev).

When you find something to do, create new branch for your feature. After you finish, open pull request to merge your changes with master branch.

Contact

License

Copyright 2019-2024 Dariusz Sikora <ds@isangeles.dev>

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.