แน่นอนว่าฉันต้องคิดให้ดีสำหรับเกม Star Catch อาจมีวิธีที่ดีกว่าในการทำ แต่นี่คือวิธีที่ฉันทำ ฉันพบอัลกอริทึมออนไลน์จริง ๆ (ขออภัยฉันจำแหล่งที่มาไม่ได้) ฉันค้นหาการตรวจหาจุดภายในรูปหลายเหลี่ยม
ฉันสร้าง NSMutableArray เพื่อเก็บคะแนนของฉัน ฉันเพิ่มคะแนนในอุปกรณ์สัมผัสของฉัน
- (BOOL) testNodeInLoop:(CCNode *)node {
CGPoint prev;
// This is more accurate point for the node
CGPoint absPoint = [node convertToWorldSpace:CGPointZero];
float x = absPoint.x;
float y = absPoint.y;
BOOL isIn = NO;
CGPoint cp;
for(int i = 0, j = [points count] - 1; i < [points count]; j = i++) {
[[points objectAtIndex:i] getValue:&cp];
[[points objectAtIndex:j] getValue:&prev];
if( ((cp.y > y) != (prev.y > y)) && (x < (prev.x -cp.x) * (y - cp.y) / (prev.y - cp.y) + cp.x)) {
isIn = !isIn;
}
}
return isIn;
}
แจ้งให้เราทราบหากสิ่งนี้มีประโยชน์