Created
February 1, 2017 13:57
-
-
Save jerstlouis/73447c602caff67f8e789e7502838997 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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