More actions
데블스캠프2005/금요일
SeeAlso) 데블스캠프2005/일정과경과
개요
- 임인택, 신재동 네트워크게임, 조현태 게임개발?, 이정직 Windows Application 개발
실습이 많은듯 하다. === 1부 === 데블스캠프2005/게임만들기 === 2부 === === 3부 === === 자료 링크 === 발표자료 타자게임 클라이언트(코딩용, 쌔거) 타자게임 클라이언트(데모용) 전체 Python 2.4.1 wxPython 2.6.0.1
message.py # -*- coding: UTF-8 -*- ID_OK = 200 ID_SENTENCE = 201 ID_TEXT = 202 ID_SAYNICK = 203 ID_SCOREBOARD = 204 MSG_OK = 'OKAY' MSG_SENTENCE = 'SENTENCE' class Message: def __init__(self, msgType, sNum, msgBody, msgInfo=None): self.messageType = msgType self.seqNum = sNum self.messageBody = msgBody self.delimiter = '\r\n' self.msgInfo = msgInfo def __str__(self): return 'MessageType : %d\nSequence Number : %d\nMessage Body : %s\nmsgInfo : %s\n' \ % (self.messageType, self.seqNum, self.messageBody, self.msgInfo)