Giter Club home page Giter Club logo

Comments (2)

fallahn avatar fallahn commented on June 27, 2024

This is not really relevant to the library, and even if it were you do not state what 'everything' is. There are plenty of articles on the internet such as this, this and this which describe collision detection and resolution. When you have understood what the articles are explaining, think about the data they require, such as the shapes or objects - then maybe tmxlite might be useful in loading that data from a tmx file for you to work with.

from tmxlite.

DennisSc avatar DennisSc commented on June 27, 2024

tmxlite does only load maps - it does not detect collisions, and you'll have to do it in your own code.
For objects, it is simple since you probably draw them separately anyway and then can use SFML's "getBoundingBox()" (or equivalents in other frameworks) to check if this collides with anything.

If you want to check for collision against certain types of tiles (not objects) like when using a collision layer, then you can get the tile values like so (assuming collision layer is layer 0)

        tmx::Map map;
        map.load("some-map.tmx");
        MapLayer layerZero(map, 0);
        MapLayer layerOne(map, 1);
        MapLayer layerTwo(map, 2);  ///and so on

	const auto& allLayers = map.getLayers();
        const auto& collisionLayer = *dynamic_cast<const tmx::TileLayer*>(allLayers[0].get());
	std::vector<tmx::TileLayer::Tile> tiles = collisionLayer.getTiles();
	
	//now you can read the values of single tiles of your collision layer:
	std::cout << "Tile 35 " << " contains value " << tiles[34].ID << std::endl;
	
	//or iterate through some tiles:
	for (int i = 0; i < 10; i++)
	{
		std::cout << "Tile " << i << " has value " << tiles[i].ID << std::endl;
	}

	// or access all of them
	for (tmx::TileLayer::Tile tile : tiles)
	{
		std::cout << tile.ID << std::endl;
	}

(note that "ID" in this case probably means "integer data" - not "identifier"!)

and then check if you can walk there or not ;)

from tmxlite.

Related Issues (20)

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.