home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / EntryPoints / CvDiplomacyInterface.py < prev    next >
Encoding:
Python Source  |  2005-11-09  |  1.3 KB  |  47 lines

  1. ## Sid Meier's Civilization 4
  2. ## Copyright Firaxis Games 2005
  3. from CvPythonExtensions import *
  4. import CvUtil
  5. import CvDiplomacy
  6.  
  7. gc = CyGlobalContext()
  8.  
  9. def beginDiplomacy (argsList):
  10.     """
  11.     This is what gets called when you first begin diplomacy
  12.     The first parameter argsList[0] is the 'comment type', or how they feel about you
  13.     """
  14.     eComment = argsList[0]
  15.     commentArgsSize = argsList[1]
  16.     if (commentArgsSize):
  17.         commentArgs = argsList[2:]
  18.         CvUtil.pyAssert(len(commentArgs)==commentArgsSize, "comment args tuple size mismatch")
  19.         print "tuple size", len(commentArgs), ", commentArgsSize ", commentArgsSize
  20.     else:
  21.         commentArgs=[]
  22.     diploClass = CvDiplomacy.CvDiplomacy()
  23.     diploClass.setAIComment(eComment, *commentArgs)    #unpack args tuple
  24.  
  25.  
  26. def handleUserResponse (argsList):
  27.     "First parameter of argsList if the comment they clicked on..."
  28.     diploClass = CvDiplomacy.CvDiplomacy()
  29.  
  30.     eComment = argsList[0]
  31.     iData1 = argsList[1]
  32.     iData2 = argsList[2]
  33.     diploClass.handleUserResponse(eComment, iData1, iData2)
  34.     
  35. def dealCanceled ():
  36.     diploClass = CvDiplomacy.CvDiplomacy()
  37.  
  38.     diploClass.dealCanceled()
  39.     
  40. def refresh (argsList):
  41.     diploClass = CvDiplomacy.CvDiplomacy()
  42.     diploClass.determineResponses(argsList[0])
  43.  
  44. def toggleDebugLogging():
  45.     CvDiplomacy.DebugLogging = not CvDiplomacy.DebugLogging
  46.     
  47.