• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

data/H11-Dec-2010-9,4327,906

include/H11-Dec-2010-2,4991,972

src/H03-May-2022-17,92013,240

AUTHORSH A D06-Jan-2004310 1510

COPYINGH A D23-Apr-200317.6 KiB341281

ChangeLogH A D11-Dec-201027.5 KiB918638

INSTALLH A D23-Apr-20037.6 KiB183143

Makefile.amH A D13-Dec-2007627 2818

Makefile.inH A D03-May-202224.6 KiB782690

READMEH A D08-Aug-20043.6 KiB158106

TODOH A D12-May-2009311 124

acconfig.hH A D23-Apr-2003293 1413

aclocal.m4H A D11-Dec-201041.3 KiB1,1711,054

bomberclone.nsiH A D13-Dec-20072.8 KiB10679

bomberclone.prjH A D13-Aug-20063.7 KiB187168

config.guessH A D06-Mar-201043.9 KiB1,5031,292

config.h.inH A D11-Dec-20101.9 KiB8159

config.subH A D06-Mar-201033.8 KiB1,7151,566

configureH A D03-May-2022261 KiB9,2227,643

configure.inH A D11-Dec-20107.8 KiB313260

depcompH A D18-Jan-201018.2 KiB631407

install-shH A D18-Jan-201013.3 KiB521344

missingH A D18-Jan-201011.2 KiB377281

README

1
2Compilation
3===========
4
5Windows:
6  On Windows i used cygwin with mingw-gcc compiler. (http://www.cygwin.com)
7  You will even need the Source from the "Simply DirectMedia Layer" Library.
8  (http://www.libsdl.org/index.php)
9
10  1. Install Cygwin and Compile the SDL Library into it.
11
12		  ./configure --prefix=/usr
13		  make
14		  make install
15
16	  The SDL.DLL file you will find under /usr/lib
17
18  2. Compile the Source of BomberClone
19
20	  	  ./configure
21		  make
22
23	  if this doesn't work try
24
25		aclocal -f
26		autoheader -f
27		autoconf -f
28		automake -a
29		./configure
30		make
31
32	  then run the game with
33
34		  src/bomberclone.exe
35
36Linux:
37  if everything goes right, you only need to run
38
39	  ./configure
40  	  make
41
42  if nothing goes right, you will need :
43
44	   aclocal
45	   autoheader
46	   autoconf
47	   automake
48	   ./configure
49	   make
50	   src/bomberclone
51
52
53Binary Versions
54===============
55
56Linux:
57  Untar the downloaded file and go into the game
58  directory. You need to have the following libs
59  installed to run this binary:
60	  SDL-1.2.7, SDL_mixer and SDL_image (with PNG support)
61
62  in the game dir just enter:
63	  ./bomberclone
64
65Windows:
66  The windows Binary Version will include eveything,
67  the SDL Librarys and all other stuff needed by
68  BomberClone. The game will come with an Installer.
69  So you won't have to do anything.
70
71
72
73Problems
74========
75
761. Starting a networkgame in a LAN network isn't working.
77    - disable to notify the masterserver
78
792. Players are jumping around, player are running thought walls
80   won't die.
81    - packet loss, network to slow
82	  right now the game tryes to send as much as possible,
83	  if it can't send anymore it will bring down the network
84	  traffic, but this only works for a while.
85
863. You start a server but noone can join it, even the other
87   people can see your game on the master server.
88    - the game needs in the current state always direct access to the
89	  UDP Port 11000, if you change it over the (-port) parameter you need
90	  to open this port.
91
92	- If you sit behind a firewall, make sure that the gameport is forwarded and
93	  if you send something, your firewall won't change the source-port.
94	  The game and the masterserver need this information to identify your
95	  Game and Player later.
96	  (i have seen some games was logged by the gameserver with port numbers
97	   above 30000, which mostly indicates that there is some problem
98	   with a firewall or router)
99
100
101If you have other problems, or just want to say something about the game, you
102just need to send me an email to : steffen@bomberclone.de
103
104
105Network
106=======
107
108(Ver. 0.3)
109The Game uses TCP port 11000, and it needs that other clients can
110connect to this port. So check your network configuration.
111
112(Ver. 0.4)
113This Version uses only UDP Port 11000, so check it again.. :o)
114
115
116Animations
117==========
118
119How to save the single frames into one big image for the animations
120The Dieing sequence will be in version 0.4
121
122Image:
123
124 left |  right | up   | down | dieing
125  F1  |   F1   |  F1  |  F1  |  F1     Frame 1
126  F2  |   F2   |  F2  |  F2  |  F2     Frame 2
127  F3  |   F3   |  F3  |  F3  |  F3     Frame 3
128  F4  |   F4   |  F4  |  F4  |  F4     Frame 4
129  F5  |   F5   |  F5  |  F5  |  F5     Frame 5
130
131
132Testers
133=======
134
135  Linux  : Marcus, Patty, x-coder, Steffen
136  Windows: boogieman, deadlock, acid
137
138
139Contact
140=======
141
142Steffen Pohle           steffen@bomberclone.de
143
144Or on our Project Page
145	http://sourceforge.net/projects/bomberclone
146
147
148Thanks
149======
150Thanks to TekkRat who mage all the diffrent players for us.
151
152
153You can find us on :
154  irc://irc.d-t-net.de #bomberclone
155
156
157http://www.bomberclone.de
158