forked from metin2/client
150 lines
4.2 KiB
Python
150 lines
4.2 KiB
Python
|
import ui
|
|||
|
class AuctionWindow(ui.ScriptWindow):
|
|||
|
|
|||
|
class PageWindow(ui.ScriptWindow):
|
|||
|
def __init__(self, parent, filename):
|
|||
|
ui.ScriptWindow.__init__(self)
|
|||
|
self.SetParent(parent)
|
|||
|
self.filename = filename
|
|||
|
def GetScriptFileName(self):
|
|||
|
return self.filename
|
|||
|
|
|||
|
def __init__(self):
|
|||
|
ui.ScriptWindow.__init__(self)
|
|||
|
self.__LoadWindow()
|
|||
|
|
|||
|
self.SelectPage("UNIQUE_AUCTION")
|
|||
|
|
|||
|
def __LoadWindow(self):
|
|||
|
pyScrLoader = ui.PythonScriptLoader()
|
|||
|
pyScrLoader.LoadScriptFile(self, "uiscript/auctionwindow.py")
|
|||
|
|
|||
|
self.pageName = {
|
|||
|
"LIST" : "<EFBFBD>Ÿ<EFBFBD> <20><><EFBFBD><EFBFBD>Ʈ",
|
|||
|
"REGISTER" : "<EFBFBD>Ÿ<EFBFBD> <20><><EFBFBD><EFBFBD>",
|
|||
|
"UNIQUE_AUCTION" : "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ũ <20><><EFBFBD><EFBFBD>",
|
|||
|
}
|
|||
|
self.pageWindow = {
|
|||
|
"LIST" : self.PageWindow(self, "uiscript/auctionwindow_listpage.py"),
|
|||
|
"REGISTER" : self.PageWindow(self, "uiscript/auctionwindow_registerpage.py"),
|
|||
|
"UNIQUE_AUCTION" : self.PageWindow(self, "uiscript/auctionwindow_uniqueauctionpage.py"),
|
|||
|
}
|
|||
|
|
|||
|
self.board = self.GetChild("Board")
|
|||
|
self.tabDict = {
|
|||
|
"LIST" : self.GetChild("Tab_01"),
|
|||
|
"REGISTER" : self.GetChild("Tab_02"),
|
|||
|
"UNIQUE_AUCTION" : self.GetChild("Tab_03"),
|
|||
|
}
|
|||
|
self.tabButtonDict = {
|
|||
|
"LIST" : self.GetChild("Tab_Button_01"),
|
|||
|
"REGISTER" : self.GetChild("Tab_Button_02"),
|
|||
|
"UNIQUE_AUCTION" : self.GetChild("Tab_Button_03"),
|
|||
|
}
|
|||
|
for page in self.pageWindow.values():
|
|||
|
pyScrLoader.LoadScriptFile(page, page.GetScriptFileName())
|
|||
|
for key, button in self.tabButtonDict.items():
|
|||
|
button.SetEvent(self.SelectPage, key)
|
|||
|
|
|||
|
self.__MakeListPage()
|
|||
|
self.__MakeRegisterPage()
|
|||
|
self.__MakeUniqueAuctionPage()
|
|||
|
|
|||
|
def Destroy(self):
|
|||
|
self.ClearDictionary()
|
|||
|
|
|||
|
def __MakeListPage(self):
|
|||
|
|
|||
|
page = self.pageWindow["LIST"]
|
|||
|
|
|||
|
yPos = 27
|
|||
|
|
|||
|
AUCTION_LINE_COUNT = 10
|
|||
|
|
|||
|
for i in xrange(AUCTION_LINE_COUNT):
|
|||
|
|
|||
|
numberSlotImage = ui.MakeImageBox(page, "d:/ymir work/ui/public/Parameter_Slot_00.sub", 11, yPos)
|
|||
|
numberSlot = ui.MakeTextLine(numberSlotImage)
|
|||
|
page.Children.append(numberSlotImage)
|
|||
|
page.Children.append(numberSlot)
|
|||
|
|
|||
|
nameSlotImage = ui.MakeImageBox(page, "d:/ymir work/ui/public/Parameter_Slot_04.sub", 55, yPos)
|
|||
|
nameSlot = ui.MakeTextLine(nameSlotImage)
|
|||
|
page.Children.append(nameSlotImage)
|
|||
|
page.Children.append(nameSlot)
|
|||
|
|
|||
|
priceSlotImage = ui.MakeImageBox(page, "d:/ymir work/ui/public/Parameter_Slot_05.sub", 175, yPos)
|
|||
|
priceSlot = ui.MakeTextLine(priceSlotImage)
|
|||
|
page.Children.append(priceSlotImage)
|
|||
|
page.Children.append(priceSlot)
|
|||
|
|
|||
|
deleteButton = ui.Button()
|
|||
|
deleteButton.SetParent(page)
|
|||
|
deleteButton.SetPosition(310, yPos)
|
|||
|
deleteButton.SetUpVisual("d:/ymir work/ui/public/small_button_01.sub")
|
|||
|
deleteButton.SetOverVisual("d:/ymir work/ui/public/small_button_02.sub")
|
|||
|
deleteButton.SetDownVisual("d:/ymir work/ui/public/small_button_03.sub")
|
|||
|
deleteButton.SetText("<EFBFBD><EFBFBD><EFBFBD><EFBFBD>")
|
|||
|
deleteButton.Show()
|
|||
|
page.Children.append(deleteButton)
|
|||
|
|
|||
|
yPos += 20
|
|||
|
|
|||
|
def __MakeRegisterPage(self):
|
|||
|
pass
|
|||
|
|
|||
|
def __MakeUniqueAuctionPage(self):
|
|||
|
|
|||
|
page = self.pageWindow["UNIQUE_AUCTION"]
|
|||
|
|
|||
|
LINE_COUNT = 3
|
|||
|
|
|||
|
for i in xrange(LINE_COUNT):
|
|||
|
|
|||
|
yPos = 5 + 99*i
|
|||
|
|
|||
|
itemSlotImage = ui.MakeSlotBar(page, 10, yPos, 97, 97)
|
|||
|
page.Children.append(itemSlotImage)
|
|||
|
|
|||
|
itemName = ui.MakeTextLine(page, FALSE, 117, yPos + 14)
|
|||
|
page.Children.append(itemName)
|
|||
|
## Temporary
|
|||
|
itemName.SetText("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>")
|
|||
|
## Temporary
|
|||
|
|
|||
|
curPrice = ui.MakeTextLine(page, FALSE, 117, yPos + 31)
|
|||
|
page.Children.append(curPrice)
|
|||
|
## Temporary
|
|||
|
curPrice.SetText("<EFBFBD><EFBFBD><EFBFBD>簡 : 20<32><30> 1234<33><34> 1234<33><34>")
|
|||
|
## Temporary
|
|||
|
|
|||
|
lastTime = ui.MakeTextLine(page, FALSE, 117, yPos + 48)
|
|||
|
page.Children.append(lastTime)
|
|||
|
## Temporary
|
|||
|
lastTime.SetText("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20>ð<EFBFBD> : 19<31><39> 28<32><38>")
|
|||
|
## Temporary
|
|||
|
|
|||
|
priceSlotImage = ui.MakeImageBox(page, "d:/ymir work/ui/public/Parameter_Slot_05.sub", 117, yPos + 65)
|
|||
|
priceSlot = ui.MakeTextLine(priceSlotImage)
|
|||
|
page.Children.append(priceSlotImage)
|
|||
|
page.Children.append(priceSlot)
|
|||
|
## Temporary
|
|||
|
priceSlot.SetText("20<EFBFBD><EFBFBD> 1234<33><34> 1234<33><34>")
|
|||
|
## Temporary
|
|||
|
|
|||
|
def SelectPage(self, arg):
|
|||
|
for key, btn in self.tabButtonDict.items():
|
|||
|
if arg != key:
|
|||
|
btn.SetUp()
|
|||
|
for key, img in self.tabDict.items():
|
|||
|
if arg == key:
|
|||
|
img.Show()
|
|||
|
else:
|
|||
|
img.Hide()
|
|||
|
for key, page in self.pageWindow.items():
|
|||
|
if arg == key:
|
|||
|
page.Show()
|
|||
|
else:
|
|||
|
page.Hide()
|
|||
|
self.board.SetTitleName(self.pageName[arg])
|