Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created February 1, 2017 13:57
Show Gist options
  • Save jerstlouis/73447c602caff67f8e789e7502838997 to your computer and use it in GitHub Desktop.
Save jerstlouis/73447c602caff67f8e789e7502838997 to your computer and use it in GitHub Desktop.
bool figurePosition(int x, int y, Point pos)
{
OldList list {};
display.StartSelection(x,y, 0,0);
display.SetCamera(null, camera);
display.CollectHits();
display.IntersectPolygons();
pos = { -1, -1 };
display.DrawObject(boardModel);
if(display.GetHits(list))
{
Vector3D viewSpace, worldSpace;
display.GetIntersect(viewSpace);
camera.Untransform(viewSpace, worldSpace);
pos.x = (int)((worldSpace.x - offset3D) / tileSize3D + 0.5) - 1;
pos.y = (int)((worldSpace.z - offset3D) / tileSize3D + 0.5) - 1;
list.Free(null);
}
display.SetCamera(null, null);
display.StopSelection();
return pos.y >= 0 && pos.y < goSize && pos.x >= 0 && pos.x < goSize;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment