CvDawnOfMan: Difference between revisions
From Civilization Modding Wiki
Jump to navigationJump to search
m (No missing information that I can see.) |
|||
Line 3: | Line 3: | ||
The Python files are written in the python programming language. They can be edited in a text editor such as notepad or in a programming editor like Python's IDLE. | The Python files are written in the python programming language. They can be edited in a text editor such as notepad or in a programming editor like Python's IDLE. | ||
W1jZef <a href="http://bawovlvvqhmj.com/">bawovlvvqhmj</a>, [url=http://wggywwblxxyi.com/]wggywwblxxyi[/url], [link=http://ighsmoulyakw.com/]ighsmoulyakw[/link], http://yeiuavrwwnol.com/ | |||
==Example== | ==Example== |
Revision as of 11:10, 5 July 2010
The CvDawnOfMan file is a python interface file that controls the appearance of the screen you get after first starting a game, called the "Dawn of Man" screen. It defines the popup screen and everything in it.
The Python files are written in the python programming language. They can be edited in a text editor such as notepad or in a programming editor like Python's IDLE.
W1jZef <a href="http://bawovlvvqhmj.com/">bawovlvvqhmj</a>, [url=http://wggywwblxxyi.com/]wggywwblxxyi[/url], [link=http://ighsmoulyakw.com/]ighsmoulyakw[/link], http://yeiuavrwwnol.com/
Example
This example is a quick idea of what you can do with functions in this file. It adds your leaderhead art to the screen.
# Leaderhead graphic szLeaderPanel = "DawnOfManLeaderPanel" screen.addPanel( szLeaderPanel, "", "", true, false, self.X_LEADER_ICON - 3, self.Y_LEADER_ICON - 5, self.W_LEADER_ICON + 6, self.H_LEADER_ICON + 8, PanelStyles.PANEL_STYLE_DAWNTOP ) screen.addLeaderheadGFC("LeaderHead", self.player.getLeaderType(), AttitudeTypes.ATTITUDE_PLEASED, self.X_LEADER_ICON + 5, self.Y_LEADER_ICON + 5, self.W_LEADER_ICON - 10, self.H_LEADER_ICON - 10, WidgetTypes.WIDGET_GENERAL, -1, -1)