WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 04-24-2009, 09:56 PM
djones1010 djones1010 is offline
Member
 
Join Date: Nov 2008
Posts: 15
Need help creating chessboard

The attached file should be placed into VizardChess folder inorder to compile correctly. You can download the VizardChess folder from the link above. It creates one row of white and brown squares then stops. I help completing the rest of the board.

Code:
	def Draw(self,board,highlightSquares=[]):
		boardSize = len(board) #board should be square.  boardSize should be always 8 for chess, but I dislike "magic numbers" :)
		current_square = 0
		for r in range(boardSize):
			for c in range(boardSize):
				(screenX,screenY) = self.ConvertToScreenCoords((r,c))				
				if current_square:
					pic = viz.addTexture('brown_square.png')
					brown_square = viz.addTexQuad()
					brown_square.texture(pic)
					brown_square.scale(1,1,1)
					brown_square.translate(r-5, 0, 15)
					#self.screen.blit(brown_square,(screenX,screenY))
					current_square = (current_square+1)%2
				else:
					pic2 = viz.addTexture('white_square.png')
					white_square = viz.addTexQuad()
					white_square.texture(pic2)
					white_square.scale(1,1,1)
					#white_square.translate(r, 0,15)
					white_square.translate(r-5, 0, 15)
					#self.screen.blit(white_square,(screenX,screenY))
					current_square = (current_square+1)%2
	
			current_square = (current_square+1)%2
Attached Files
File Type: zip VizardTesting.zip (2.7 KB, 4450 views)
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Trying to integrate Source Code with Vizard djones1010 Vizard 1 03-10-2009 02:58 PM
how to use ***.remove() & how to show words directly? (change attach source code) znchb Vizard 2 10-30-2008 12:33 AM
Read file....many issues Uttama_vizard Vizard 9 07-08-2008 02:16 PM
File Management Uttama_vizard Vizard 2 07-01-2008 09:44 AM


All times are GMT -7. The time now is 08:51 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC