Jump to content

setBreakCondition - WebWalkEvent


Acerd

Recommended Posts

This may sound stupid but how do I use this?

Apparently I have to make a "Condition" but I don't really get it, can anyone explain?

 

Example:

public static void webWalkEvent(final INodeRouteFinder routeFinder, final Position position, final int treshold, final MethodProvider script) {
	WebWalkEvent event = new WebWalkEvent(routeFinder, position);
	event.setBreakCondition(new Condition() {

		@Override
		public boolean evaluate() {
                        // Return when you want the event to break.
			return script.getMap().distance(position) <= treshold;

		}
	});

	script.execute(event);
}
  • Like 5
Link to comment
Share on other sites

 

Example:

public static void webWalkEvent(final INodeRouteFinder routeFinder, final Position position, final int treshold, final MethodProvider script) {
	WebWalkEvent event = new WebWalkEvent(routeFinder, position);
	event.setBreakCondition(new Condition() {

		@Override
		public boolean evaluate() {
                        // Return when you want the event to break.
			return script.getMap().distance(position) <= treshold;

		}
	});

	script.execute(event);
}

Thanks a lot!

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...