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

..03-May-2022-

lbreakout/H03-May-2022-9,0637,278

AUTHORSH A D19-Apr-200033 21

COPYINGH A D19-Apr-200014.8 KiB281237

ChangeLogH A D15-Mar-20012.8 KiB8674

INSTALLH A D19-Apr-20006.8 KiB168129

Makefile.amH A D14-Oct-2000282 93

Makefile.inH A D03-May-202210.9 KiB366285

READMEH A D03-Nov-20002.1 KiB6652

acconfig.hH A D18-Jan-1999171 104

acinclude.m4H A D10-Oct-20005.3 KiB163150

aclocal.m4H A D15-Mar-20019.6 KiB291263

config.h.inH A D03-Oct-2000230 127

configureH A D03-May-202267.3 KiB2,1821,765

configure.inH A D15-Mar-20011.8 KiB7260

install-shH A D11-Dec-19985.5 KiB251152

lbreakout.kdevprjH A D15-Mar-20014.1 KiB197196

lbreakout.lsmH A D15-Mar-2001356 1514

lbreakout.specH A D15-Mar-20012.7 KiB7866

missingH A D18-May-19996.1 KiB189152

mkinstalldirsH A D11-Dec-1998732 4123

stamp-h.inH A D15-Mar-200110 21

README

1
2				LBreakout
3
4		a breakout-style arcade game for Linux
5			    by Michael Speck
6
7------
81. Requirements
92. Installation
103. Manual
114. Problems
12------
13
14Requirements:
15    X11, SDL(1.0 or better)
16
17Installation:
18    1.	type './configure'
19	options:
20	    --disable-sound (no sound)
21	    --disable-install (no installation; play from source directory)
22	(e.g. './configure --disable-sound --disable-install')
23    2.	type 'make'
24    3.	become root
25    4.  type 'make install' (only if 'install' is not disabled)
26    5.  type 'lbreakout' to play
27
28Manual:
29    For more informations about the game see manual/manual.html.
30
31---------
32Problems:
33
34I installed it properly but it crashes instantly.
35- The SDL Sound might not work: repeat the installation process described above
36with argument '--disable-sound' for configure.
37
38LBreakout is not very fast.
39- In Options/Graphics you can change the animation level and turn off
40transparancy. Options/Graphics/Animations is 'high' by default but choosing
41'low' instead will be much faster.
42
43When I move my mouse it's hard to fire the weapon.
44- This problem does only occur when Options/Controls/WarpMouse is 'on'.
45This option is quite useful to keep the mouse pointer in the window and
46should be disabled in 'Fullscreen' mode.
47If you play in a window you should use 'Space' to fire your weapon or turn
48Options/Controls/WarpMouse 'off'.
49BTW this problem is caused by SDL_EventState(MOUSEMOTION, IGNORE) which seems
50to have an effect on mouse button events. (Function Breakout::Club_Update()
51in breakout.cpp. Someone got an idea?)
52
53When the framerate drops my mouse is slowing down.
54- This problem does only occur with my PS/2 mouse when
55Options/Controls/WarpMouse is 'on'. My serial one is working perfect.
56If you have problem too you should keep 'Mouse Motion' in
57Options/Controls at 100 or turn Options/Controls/WarpMouse 'off'.
58
59It crashes after I played for a while.
60- You using egcs 2.91.66? Well, gcc 2.95.x works fine. Maybe you should update
61your compiler. I've fixed as many bugs as possible occuring when using
62egcs 2.91.66 but it still fails sometimes.
63
64It needs a library called SDL. Where do I get this?
65Check out www.libsdl.org!
66