Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
git-svn-id: http://quadra.googlecode.com/svn/trunk/quadra@2 8926ee93-8b47-0410-9975-e57e0fb0bd0c
  • Loading branch information
pphaneuf committed Apr 29, 2011
0 parents commit ea1992b
Show file tree
Hide file tree
Showing 452 changed files with 41,110 additions and 0 deletions.
1 change: 1 addition & 0 deletions .cvsignore
@@ -0,0 +1 @@
.depends
14 changes: 14 additions & 0 deletions Makefile
@@ -0,0 +1,14 @@
# Makefile pour le Universal Game Skelton
# $Id$

MAKEFILE_INCLUDED:=yes

.PHONY: default all release

default: all

release:
@$(MAKE) RELEASE=yes

include config/common.mk

19 changes: 19 additions & 0 deletions README
@@ -0,0 +1,19 @@

Quadra Source Release
---------------------
2000/07/25

This is a raw source release. Do not smoke near this package.

Basic instructions:

- go in the 'skelton' subdirectory (no, this is not a typo!)
- type 'make'
- go back in the root directory of the package
- type 'make' again

There you go! There is a 'quadra' binary and a 'quadra.res' resource
file in the quadra/source directory. If not, then something went wrong.

:-)

39 changes: 39 additions & 0 deletions README.win32
@@ -0,0 +1,39 @@
Quadra version 1.1.4 for Windows
Copyright (c) 1998-2000 Ludus Design inc. All rights reserved.

THANK YOU for downloading Quadra. This document contains installing information
and references to our support for Quadra.

Quadra is an addictive puzzle and competitive, action-packed multiplayer game all-in-one!
Here are some key features:
- Incredibly smooth gameplay
- Recursive line clearing allowing blocks to combine in violent chain reactions that
will send your opponents crying back to their moms!
- 10 levels with colorful background images and matching sound effects
- Integrated CD music player
- Worldwide highscore table with recordings of your best performances
- Keep an eye on your opponents with the remote watch windows
- Chat window
- TCP/IP support for internet or LAN multiplayer games
- Cheat-free, lag-free and just plain free internet play
- Windows and Linux versions available

PREVIOUS QUADRA VERSION

If you had previously installed Quadra (such as version 1.1.1), the installer will
warn you that it has detected your previous installation. You MUST ensure that
Quadra and QSnoop are not currently running before proceding. You can look for
QSnoop in your Windows tray-bar. If it's there, close it by left clicking on the
small icon and select "Exit".

You should choose to install in the same folder as your previous version. Your
recorded demo files and settings won't be overwritten.

DIRECTX

You'll need to have Microsoft DirectX version 5.0 (or more) for Quadra. If you have
Windows NT, you'll need to update to the latest service pack. Please visit our web
site for link and info about these requirements at:
http://www.ludusdesign.com/links.html
Quadra has been succesfully tested with DirectX 7.0.

1 change: 1 addition & 0 deletions config/.cvsignore
@@ -0,0 +1 @@
local.mk
33 changes: 33 additions & 0 deletions config/common.mk
@@ -0,0 +1,33 @@
# Makefile pour le Universal Game Skelton
# $Id$

.PHONY: clean niceclean deps

TARGETS:=
CLEANS:=
DEPENDS:=
OBJECTS=

-include config/local.mk

include config/compiler.mk

include $(wildcard */dir.mk)

all: $(TARGETS)

CLEANS+=$(shell find . -name '*.o' -print)

clean: niceclean
rm -rf .depends $(CLEANS)

niceclean:
rm -rf $(shell find . -name 'core' -print) $(shell find . -name '*~' -print)

.depends:
@$(foreach DEP,$(DEPENDS),$(COMPILE.cc) -M $(DEP) | sed -e 's|^.*:|$(dir $(DEP))&|' >> $@ ;)

ifneq ($(MAKECMDGOALS),clean)
include .depends
endif

36 changes: 36 additions & 0 deletions config/compiler.mk
@@ -0,0 +1,36 @@
# Makefile pour le Universal Game Skelton
# $Id$

include config/target.mk

SKELTON:=skelton

CXXFLAGS+=-pipe -pedantic -Wall -Iinclude -I$(SKELTON)/include
LDFLAGS+=-L$(SKELTON)/lib

OPTFLAGS+=-m486 -O6
DEBUGFLAGS=-ggdb

ifdef RELEASE
CXX=i386-glibc20-linux-g++
CXXFLAGS+=-I/usr/i386-glibc20-linux/include/g++ $(OPTFLAGS)
LDFLAGS+=-L/usr/i386-glibc20-linux/lib -L/home/pp/lib/i386-glibc20-linux
else
CXXFLAGS+=$(DEBUGFLAGS) -D_DEBUG
endif

ifdef SOCKS
CXXFLAGS+=-DSOCKS
endif

ifeq "$(TARGET)" "linux"
CXXFLAGS+=-DUGS_LINUX -DUGS_LINUX_SVGA -DUGS_LINUX_X11
#LDLIBS+=-L/usr/X11R6/lib -lX11 -lXext -lXpm -lvga -lvgagl -lz
#ifdef RELEASE
#LDLIBS+=-ldb
#else
#LDLIBS+=-ldb1
#endif
else
# hmm, nothing else than linux is supported by this Makefile!
endif
4 changes: 4 additions & 0 deletions config/target.mk
@@ -0,0 +1,4 @@
# Makefile pour Quadra
# $Id$

TARGET:=linux
Binary file added demos/demo00.rec
Binary file not shown.
Binary file added demos/demo01.rec
Binary file not shown.
Binary file added demos/demo02.rec
Binary file not shown.
Binary file added demos/demo03.rec
Binary file not shown.
Binary file added fonts/courrier.fnt
Binary file not shown.
Binary file added fonts/font.fnt
Binary file not shown.
Binary file added help/config.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added help/connect.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added help/creation.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added help/demo.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added help/doze.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added help/doze_property.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added help/go.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added help/go_eng.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
939 changes: 939 additions & 0 deletions help/help.html

Large diffs are not rendered by default.

0 comments on commit ea1992b

Please sign in to comment.