当前位置: 首页>>代码示例>>C++>>正文


C++ Missile::getPosition方法代码示例

本文整理汇总了C++中Missile::getPosition方法的典型用法代码示例。如果您正苦于以下问题:C++ Missile::getPosition方法的具体用法?C++ Missile::getPosition怎么用?C++ Missile::getPosition使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Missile的用法示例。


在下文中一共展示了Missile::getPosition方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: startGame

void startGame(Missile missile, Enemy enemy){
	cout<< "do you want to launch a missile?(y/n)"<<endl;
	char check;
	cin>>check;
	while(check!='n'){
	if(check=='y'){
		
	    askWhereX(missile.getPosition());
		askWhereY(0);
		checkIfEnemyThere(missile.getPosition(), enemy);
		
		cout<<"Would you like to launch another?"<<endl;
		cin>>check;
	}else{
开发者ID:makehimanoffer,项目名称:DavidRyanAdvancedOOProgramming,代码行数:14,代码来源:maincpp.cpp

示例2: update

void MissileMovementLoop::update(float delta){
Missile* parent = (Missile*)getOwner();
if(parent==NULL)
{
    return;
}else{
    auto moveDown = MoveTo::create(missileFlyDuration, Point(0,parent->getPosition().x));
    parent->runAction(moveDown);
}
}
开发者ID:bowbahdoe,项目名称:Kablewey,代码行数:10,代码来源:MissileMovementLoop.cpp

示例3: enemyMissUpdate

//////// Missile tracks player and follows them ////////
//////// Has a limited turning radius.          ////////
//////// Has a limited lifetime until it        ////////
//////// explodes								////////
void AI::enemyMissUpdate(Missile &proj, GSP420::ABC *player, const float dt)
{
	D3DXVECTOR3 currDir, newDir;
	// Get the missiles current direction from its velocity
	currDir = proj.getVelocity();
	D3DXVec3Normalize(&currDir, &currDir);

	// Get the missiles new direction according to player position
	newDir = player->getPosition() - proj.getPosition();
	D3DXVec3Normalize(&newDir, &newDir);

	// Find the angle between the two vectors
	float angle = D3DXVec3Dot(&currDir, &newDir);
	angle = acos(angle);

	// Re-use newDir vector for updating projectile velocity
	newDir = proj.getVelocity();

	D3DXMATRIX rotMat;
	// Check if angle is larger than our missile's turning radius
	// Then update the missiles velocity by rotating it in the
	// direction of the angle
	if (abs(angle) > ENEMY_MISSILE_TURN_RADIUS)
	{
		if (angle > 0.0f)
		{
			D3DXMatrixRotationY(&rotMat, ENEMY_MISSILE_TURN_RADIUS);
			newDir.x = (rotMat._11 * newDir.x) + (rotMat._12 * newDir.y) + (rotMat._13 * newDir.z);
			newDir.y = (rotMat._11 * newDir.x) + (rotMat._12 * newDir.y) + (rotMat._13 * newDir.z);
			newDir.z = (rotMat._11 * newDir.x) + (rotMat._12 * newDir.y) + (rotMat._13 * newDir.z);
			proj.setVelocity(newDir);
		}
		else
		{
			D3DXMatrixRotationY(&rotMat, -ENEMY_MISSILE_TURN_RADIUS);
			newDir.x = (rotMat._11 * newDir.x) + (rotMat._12 * newDir.y) + (rotMat._13 * newDir.z);
			newDir.y = (rotMat._11 * newDir.x) + (rotMat._12 * newDir.y) + (rotMat._13 * newDir.z);
			newDir.z = (rotMat._11 * newDir.x) + (rotMat._12 * newDir.y) + (rotMat._13 * newDir.z);
			proj.setVelocity(newDir);
		}
	}
	else
	{
		D3DXMatrixRotationY(&rotMat, angle);
		newDir.x = (rotMat._11 * newDir.x) + (rotMat._12 * newDir.y) + (rotMat._13 * newDir.z);
		newDir.y = (rotMat._11 * newDir.x) + (rotMat._12 * newDir.y) + (rotMat._13 * newDir.z);
		newDir.z = (rotMat._11 * newDir.x) + (rotMat._12 * newDir.y) + (rotMat._13 * newDir.z);
		proj.setVelocity(newDir);
	}
开发者ID:mblake90,项目名称:GSP420EngineDemo,代码行数:53,代码来源:AI.cpp

示例4: playerMissUpdate

//////// Missile locks on to closest enemy in front of player ////////
//////// Missile tracks enemy aggressively                    ////////
void AI::playerMissUpdate(Missile &proj, std::list<Enemy> *enemies, GSP420::ABC *player)
{
	// If missile has no target, get one
	if (proj.getEnemyTarget() == NULL)
	{
		float closestY = -100.0f;
		// Search through the enemy list for the one closest
		// to the player within a set field of view
		std::list<Enemy>::iterator enemyIt = enemies->begin();
		while (enemyIt != enemies->end())
		{
			if (enemyIt->getPosition().x > player->getPosition().x - 5.0f &&
				enemyIt->getPosition().x < player->getPosition().x + 5.0f &&
				enemyIt->getPosition().y > closestY)
			{
				closestY = enemyIt->getPosition().y;
				proj.setEnemyTarget(&*enemyIt);
			}

			enemyIt++;
		}
	}
	else // Otherwise track the enemy target
	{
		D3DXVECTOR3 newVel;
		Enemy *enemy = proj.getEnemyTarget();

		// Find the updated direction for the missile based on enemy position
		newVel = enemy->getPosition() - proj.getPosition();
		D3DXVec3Normalize(&newVel, &newVel);

		// Multiply direction vector by missile speed to obtain missile velocity
		newVel *= ENEMY_MISSILE_SPEED;
		proj.setVelocity(newVel);
	}
}
开发者ID:mblake90,项目名称:GSP420EngineDemo,代码行数:38,代码来源:AI.cpp


注:本文中的Missile::getPosition方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。