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


C++ Shape::setPosition方法代码示例

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


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

示例1: fill_shape

static void fill_shape(sf::RenderTarget& target, sf::Shape& shape, int x, int y, sf::Color colour) {
	shape.setPosition(x, y);
	shape.setFillColor(colour);
	setActiveRenderTarget(target);
	target.draw(shape);
	
}
开发者ID:calref,项目名称:cboe,代码行数:7,代码来源:render_shapes.cpp

示例2: frame_shape

static void frame_shape(sf::RenderTarget& target, sf::Shape& shape, int x, int y, sf::Color colour) {
	shape.setPosition(x, y);
	shape.setOutlineColor(colour);
	shape.setFillColor(sf::Color::Transparent);
	// TODO: Determine the correct outline value; should be one pixel, not sure if it should be negative
	shape.setOutlineThickness(-1.0);
	target.draw(shape);
}
开发者ID:calref,项目名称:cboe,代码行数:8,代码来源:render_shapes.cpp

示例3: move

	void move(std::vector<Snake>& snakes) {
	
		
		int size = snake.size();
		sf::Vector2f t,old=snake[size-1];
		
		
		if (inventory!=NULL) {
			inventory->setPosition(snake[size-1]+sf::Vector2f(15,15));
		};
		if (has_eaten) {
			snake.push_back(snake[size-1]+movedir);
			has_eaten=false;
		} else
			
			//this shit's retarded yo - beware or refactor.
			for (int i = size-1 ; i >=0 ; i--) {
				if (i==size-1) {
					snake[size-1]+=movedir;
					
				//collisions and frags
					for (int sn=0;sn <snakes.size();sn++) {
						for (int y=0;y<=snakes[sn].snake.size();y++) {
							//If we're going through ourselves and we're at the head,skip collission
							if ((snakes[sn].id==id) && (y==size-1)) continue;
							if (sf::FloatRect(snakes[sn].snake[y],sf::Vector2f(20,20)).contains(snake[size-1]+movedir)) {
								
								//std::cout << std::to_string(id) << " crash " << std::to_string(snake2.id) << " " <<  std::to_string(y) << "\n";
							
								if (id!=snakes[sn].id) {snakes[sn].score+=1;}
								else score--;
								reset();
								return;
							};
						}
					};
				}
				else {
					t=snake[i];
					snake[i]=old;
					old=t;
				};
				
				//wrap-around
				if (snake[i].x<-15) 
					snake[i].x=XRES-30;
				else if (snake[i].x>XRES)
					snake[i].x=-15;
				
				if (snake[i].y<-15) 
					snake[i].y=YRES-30;
				else if (snake[i].y>YRES)
					snake[i].y=-15;	
			};
	};
开发者ID:BeNikis,项目名称:Pizza-Worm-Sfml-Capture-the-Flag,代码行数:55,代码来源:snake_sfml.cpp


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