コード例 #1
0
ファイル: commands.py プロジェクト: pom2ter/immortal
def help():
	contents = IO.load_manual()
	game.messages.box('Help', None, game.PLAYER_STATS_WIDTH + ((game.MAP_WIDTH - (len(max(contents, key=len)) + 20)) / 2), ((game.SCREEN_HEIGHT + 1) - max(16, len(contents) + 4)) / 2, len(max(contents, key=len)) + 20, len(contents) + 4, contents, input=False)
	game.draw_gui = True
コード例 #2
0
ファイル: game.py プロジェクト: pom2ter/immortal
	def help(self):
		contents = IO.load_manual()
		messages.box('Help', None, 'center_screenx', 'center_screeny', len(max(contents, key=len)) + 16, len(contents) + 4, contents, input=False)