當前位置: 首頁>>代碼示例>>Java>>正文


Java Graphics.fillRoundRect方法代碼示例

本文整理匯總了Java中org.newdawn.slick.Graphics.fillRoundRect方法的典型用法代碼示例。如果您正苦於以下問題:Java Graphics.fillRoundRect方法的具體用法?Java Graphics.fillRoundRect怎麽用?Java Graphics.fillRoundRect使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.newdawn.slick.Graphics的用法示例。


在下文中一共展示了Graphics.fillRoundRect方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: showSunCollected

import org.newdawn.slick.Graphics; //導入方法依賴的package包/類
/**
 * Draw sun collected
 * @param gc	GameContainer
 * @param sbg	StateBasedGame
 * @param g	Graphics
 * @throws SlickException
 */
public static void showSunCollected(GameContainer gc, StateBasedGame sbg, Graphics g) throws SlickException {
	float iconPosX = 10 * PZGUI.getResolutionRateWidth();
	float iconPosY = 5  * PZGUI.getResolutionRateHeight();
	float iconW = 80 * PZGUI.getResolutionRateWidth();
	float iconH = 80 * PZGUI.getResolutionRateHeight();

	float textPosX = 120 * PZGUI.getResolutionRateWidth();
	float textPosY = 22  * PZGUI.getResolutionRateHeight();

	float posX = 60 * PZGUI.getResolutionRateWidth();
	float posY = 20 * PZGUI.getResolutionRateHeight();
	float W = 150 * PZGUI.getResolutionRateWidth();
	float H = 45  * PZGUI.getResolutionRateHeight();

	g.setColor(new Color(0, 0, 0, 150));
	g.fillRoundRect(posX, posY, W, H, 20);
	SunUI.drawIcon(iconPosX, iconPosY, iconW, iconH);

	sunView.render(textPosX, textPosY, SunUI.getSunCollected().toString(), Color.white);
	g.setColor(new Color(255, 255, 255));
}
 
開發者ID:hungthuanmk,項目名稱:HCMIU_PlantsAndZombies,代碼行數:29,代碼來源:PlayUI.java

示例2: render

import org.newdawn.slick.Graphics; //導入方法依賴的package包/類
/**
	 * Render Seeds area
	 * @param gc GameContainer
	 * @param sbg StateBasedGame
	 * @param g	Graphics
	 */
	public static void render(GameContainer gc, StateBasedGame sbg, Graphics g) {
		for (int i=0; i<seed.size() && i<8; i++) {
			if (seed.get(i) != null) {
				x = PlayUI.getSeedZonePosX();
				y = PlayUI.getSeedZonePosY();
				w = PlayUI.getSeedZoneW();
				h = PlayUI.getSeedZoneH();
				seed.get(i).getImg().draw(  x, y + i*h, w, h );
//				g.drawString(""+seed.get(i).getPrice(), x + w * 0.71f, y + i*h + h*0.7f);
				if (seed.get(i).getPrice() > SunUI.getSunCollected()) {
					g.setColor(new Color(1,1,1,100));
					g.fillRoundRect(x, y + i*h, w, h, 5);
				}	
			}
		}
		for (int i=0; i<seed.size() && i<8; i++) {
			if (seed.get(i) != null) {
				x = PlayUI.getSeedZonePosX();
				y = PlayUI.getSeedZonePosY();
				w = PlayUI.getSeedZoneW();
				h = PlayUI.getSeedZoneH();
				if (seed.get(i).getPrice() > SunUI.getSunCollected())
					cost.render(x + w * 0.594f, y + i*h + h*0.5f, (seed.get(i).getPrice()<100 ? "   " : "") + seed.get(i).getPrice().toString(), new Color(180, 180, 180));
				else
					cost.render(x + w * 0.594f, y + i*h + h*0.5f, (seed.get(i).getPrice()<100 ? "   " : "") + seed.get(i).getPrice().toString(), new Color(245, 245, 245));
					
			}
		}
	}
 
開發者ID:hungthuanmk,項目名稱:HCMIU_PlantsAndZombies,代碼行數:36,代碼來源:SeedUI.java

示例3: render

import org.newdawn.slick.Graphics; //導入方法依賴的package包/類
/**
 * @see org.newdawn.slick.BasicGame#render(org.newdawn.slick.GameContainer, org.newdawn.slick.Graphics)
 */
public void render(GameContainer container, Graphics g) throws SlickException {
	g.setColor(Color.white);
	
	g.setAntiAlias(true);
	for (int x=0;x<360;x+=10) {
		g.drawLine(700,100,(int) (700+(Math.cos(Math.toRadians(x))*100)),
						   (int) (100+(Math.sin(Math.toRadians(x))*100)));
	}
	g.setAntiAlias(false);
	
	g.setColor(Color.yellow);
	g.drawString("The Graphics Test!", 300, 50);
	g.setColor(Color.white);
	g.drawString("Space - Toggles clipping", 400, 80);
	g.drawString("Frame rate capped to 100", 400, 120);
	
	if (clip) {
		g.setColor(Color.gray);
		g.drawRect(100,260,400,100);
		g.setClip(100,260,400,100);
	}

	g.setColor(Color.yellow);
	g.translate(100, 120);
	g.fill(poly);
	g.setColor(Color.blue);
	g.setLineWidth(3);
	g.draw(poly);
	g.setLineWidth(1);
	g.translate(0, 230);
	g.draw(poly);
	g.resetTransform();
	
	g.setColor(Color.magenta);
	g.drawRoundRect(10, 10, 100, 100, 10);
	g.fillRoundRect(10, 210, 100, 100, 10);
	
	g.rotate(400, 300, ang);
	g.setColor(Color.green);
	g.drawRect(200,200,200,200);
	g.setColor(Color.blue);
	g.fillRect(250,250,100,100);

	g.drawImage(image, 300,270);
	
	g.setColor(Color.red);
	g.drawOval(100,100,200,200);
	g.setColor(Color.red.darker());
	g.fillOval(300,300,150,100);
	g.setAntiAlias(true);
	g.setColor(Color.white);
	g.setLineWidth(5.0f);
	g.drawOval(300,300,150,100);
	g.setAntiAlias(true);
	g.resetTransform();
	
	if (clip) {
		g.clearClip();
	}
}
 
開發者ID:j-dong,項目名稱:trashjam2017,代碼行數:64,代碼來源:GraphicsTest.java


注:本文中的org.newdawn.slick.Graphics.fillRoundRect方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。