Giter VIP home page Giter VIP logo

dtiled's Introduction

DTiled

A Dart package that renders Tiled maps and integrates with TiledStack services

0.0.x only supports the JSON map format and currently only renders Isometric maps. TMX and Orthogonal support coming.

Basics.

Setup TilesetProvider and DTiledLoader. A 'TiledsetProvider' is a class which providers logic to get a tileset image. A DTiledLoader converts from a simple Dto to the main data structure used for renderering. This is based on 'XTiled' by ViNull.

...
  gameLoop.start();
  query('#canvas').nodes.add(canvas);
  context2d = canvas.getContext('2d');
  // TiledStack tileset provider is for use with TiledStack API. 'LocalTilesetProvider' for alternate path to textures
  tileProvider = new TiledStackTilesetProvider(baseAddress);
  tiledLoader = new DTiledLoader(tileProvider);
...

Once the JSON map is loaded, other parts need to be initialised.

...
  // a Dart 'Map'
  Map response = JSON.decode(r.responseText); 
  //populate simple Dto
  MapDto mapDto = new MapDto(response); 
  currentMapDto = mapDto;
  // Parse simple Dto
  currentMap = xTiledLoader.LoadMap(currentMapDto); 
  // Create render region for camera
  renderRegion = new Rect(canvas.clientLeft,canvas.clientTop,canvas.clientWidth,canvas.clientHeight); 
  // Create camera
  camera = new Camera(currentMap,renderRegion);
  // Create renderer. This should probably be based on map type in Dto, and will once all maps types are supported
  renderer = new TiledIsometricRenderer(canvas,context2d,tileProvider,camera);
...

Example project here.

See complete simple example code.

example

dtiled's People

Contributors

layoric 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.