Giter VIP home page Giter VIP logo

modularpathfinding's Introduction

ModularPathFinding

A C++ library for plug-play path finding with grid-based maps

How to use

Simply bundle GLM with your application, include "Node.h" + the header for the algorithm you wish to use, and instantiate it like so:

	// Instantiate the pathfinder
	PathAlgorithms::BreadthFirst* pathfinder = new PathAlgorithms::BreadthFirst();
	
	// This would be your nodemap, but here we're going to make one
	std::vector<std::vector<NODE*>> tempnodearray; 
	for (size_t y = 0; y < _MAP->map.size(); y++)
	{
		std::vector<NODE*> temporary;
		for (size_t x = 0; x < _MAP->map.at(y).size(); x++)
		{
			temporary.push_back(new NODE(glm::ivec2(x, y), false));
		}
		tempnodearray.push_back(temporary);
	}
	
	// Generate the path
	std::vector<NODE> path = pathfinder->GeneratePath(start_position, end_position, tempnodearray);
	
	// Delete the pathfinder
	delete pathfinder;

Your state manager will have to be configured to be able to switch the active path find module. You will need to discretise your map into a nodemap (two-dimensional vector of NODE*), like in the example above.

modularpathfinding's People

Watchers

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