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


Python Menu.nameOfSelectedBox方法代碼示例

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


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

示例1: Person

# 需要導入模塊: from Menu import Menu [as 別名]
# 或者: from Menu.Menu import nameOfSelectedBox [as 別名]

#.........這裏部分代碼省略.........
		
	def wasClickedOn(self,map):
		if self.rect.collidepoint(map['coords']) == True and map['button'] == 'down':
			self.clicked = True
			self.clickedSpot = map['coords']
			
	def rightClick(self,map):
		# print "self.rect is: ", self.rect
		# print "mouse is at: ",map['coords']
		# print "self.rect.collidepoint(map['coords']) is: ",self.rect.collidepoint(map['coords'])
		# print "map['button3'] is: ", map['button3']
		# print "map['button'] is: ",map['button']
	
		if self.rect.collidepoint(map['coords']) == True and map['button3']== True and map['button'] == 'down':
			self.rightButton = True
			self.clickedSpot = map['coords']
			
	def rightClicked(self):
		return self.rightButton
			
			
	def clickedOn(self):
		return self.clicked
			
	def set_clickedOn_to_false(self):
		self.clicked = False
		
	def closingClick(self,map):
		if self.clicked == True and self.rect.collidepoint(map['coords']) == True and map['button'] == 'down' and map['button3'] == True:
				return True 

				
	def runWalkingPath(self):
		if self.menu.nameOfSelectedBox() == "walking":
			return True
		else:
			return False
		

	def getMenu(self,map):
		#print "1 ----"
		'''getMenu checks to see if you clicked on something on the menu. 
	
		   if you did, it sets clicked to false, so that on the next screen update, the menu
		   will not appear. '''
	
		if self.menu.clickedOn(map): #menu.clickedOn returns true if you clicked on one of the squares, and false otherwise
			self.clicked = False
		return self.menu.currentMenu(map,self.clickedSpot) #returns the current menu
		
		
		#is used to prevent making circles in the exact same place

			
	def selected(self):
		#print self.menu.selectedBox()
		temp = self.menu.selectedBox()
		##print "temp is: ",temp
		#self.setLTSelected(temp)
		return temp
		
	def resetSelected(self):
		return self.menu.resetSelectedBox()
		
	# def setLTSelected(self,string):# set long term selected
		# self.LTSelectedString = string
開發者ID:MichaelHaendler,項目名稱:python_video_game1,代碼行數:70,代碼來源:Person.py


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