CvDawnOfMan: Difference between revisions
From Civilization Modding Wiki
Jump to navigationJump to search
m (Reverted edits by 69.62.200.179 (Talk) to last version by TC01) |
|||
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. | ||
http://tramadol911.com buy tramadol eew http://edpillsonline.net/ cialis for sale fuy http://weightlosspillsonline.org/ acomplia dijwdd | |||
==Example== | ==Example== |
Revision as of 14:54, 6 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.
http://tramadol911.com buy tramadol eew http://edpillsonline.net/ cialis for sale fuy http://weightlosspillsonline.org/ acomplia dijwdd
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)