资源简介

Pygame游戏源代码:网络版双人对战贪吃蛇 包含代码、图片、声音等所有资源,可直接运行 游戏时先运行SnakeServer,启动服务器。在分别运行SnakeP1和SnakeP2启动两个客户端。服务器和两个客户端的IP可在源代码中直接修改。

资源截图

代码片段和文件信息

‘‘‘
Created on 2012-8-13

@author: gaoyang
@group: game-netease
@copyright: This program is a free software. You can redistribute and modify it under the terms of the GNU General Public License as published by the Free Software Foundation.
‘‘‘

SCREEN_SIZE = (640 480)
G_WIDTH G_HEIGHT = 400 450
OFFSET_X OFFSET_Y = 15 15
BORDER = 5

WHITE  = (255 255 255)
BLACK  = (0   0   0  )
RED    = (255 0   0  )
GREEN  = (0   255 0  )
BLUE   = (0   0   255)
YELLOW = (255 255 0  )

Player_COLOR = [BLUE YELLOW]

LEFT = 0
RIGHT = 1
UP = 2
DOWN = 3

P1_NUM = 0
P1_SCORE = 0
P1_LEVEL = 1
P1_INI_POS = [(20 30) (19 30) (18 30) (17 30)]
P1_INI_DRCT = RIGHT

P2_NUM = 1
P2_SCORE = 0
P2_LEVEL = 1
P2_INI_POS = [(60 60) (61 60) (62 60) (63 60)]
P2_INI_DRCT = LEFT

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1265  2012-07-26 15:36  logo.png
     文件         815  2012-08-13 15:07  SnakeData.py
     文件        1346  2012-08-13 15:52  SnakeData.pyc
     文件        2356  2012-08-13 16:20  SnakeDld.py
     文件        2418  2012-08-13 16:21  SnakeDld.pyc
     文件         478  2012-08-13 15:43  SnakeFood.py
     文件        1057  2012-08-13 15:52  SnakeFood.pyc
     文件        1794  2012-08-14 14:37  Snakeobject.py
     文件        2788  2012-08-14 14:37  Snakeobject.pyc
     文件        8826  2012-08-14 15:22  SnakeP1.py
     文件        8830  2012-08-14 15:26  SnakeP2.py
     文件        6432  2012-08-14 15:24  SnakeServer.py
     文件        1282  2012-08-14 11:40  SnakeTcp.py
     文件        2430  2012-08-14 11:41  SnakeTcp.pyc

评论

共有 条评论