from https://github.com/ArnCarveris/OpenSource.
fixed by ZRY.

Ivan Avdeev aad29b1b37 add collections as a precursor for asset loading 7 年之前
3p ad0bd5eafa clarify standards usage 7 年之前
src 002291e49b add basic c vbsp parser and support stuff 7 年之前
.gitignore 3d5eba2d36 osx: restored, added nyans 11 年之前
.gitmodules 002291e49b add basic c vbsp parser and support stuff 7 年之前
.ycm_extra_conf.py ad0bd5eafa clarify standards usage 7 年之前
COPYING.WTFPL 57387726fe Create COPYING.WTFPL 11 年之前
OpenSource.c aad29b1b37 add collections as a precursor for asset loading 7 年之前
README.md 5bc3c46922 Update README.md 11 年之前
TODO aad29b1b37 add collections as a precursor for asset loading 7 年之前
atlas.c 002291e49b add basic c vbsp parser and support stuff 7 年之前
atlas.h 002291e49b add basic c vbsp parser and support stuff 7 年之前
bsp.c aad29b1b37 add collections as a precursor for asset loading 7 年之前
bsp.h aad29b1b37 add collections as a precursor for asset loading 7 年之前
collection.c aad29b1b37 add collections as a precursor for asset loading 7 年之前
collection.h aad29b1b37 add collections as a precursor for asset loading 7 年之前
compile.sh aad29b1b37 add collections as a precursor for asset loading 7 年之前
filemap.c aad29b1b37 add collections as a precursor for asset loading 7 年之前
filemap.h aad29b1b37 add collections as a precursor for asset loading 7 年之前
mempools.h aad29b1b37 add collections as a precursor for asset loading 7 年之前
utils.h aad29b1b37 add collections as a precursor for asset loading 7 年之前
vbsp.h 00254c406b get displacement lightmaps to work almost correctly 7 年之前

README.md

OpenSource

This all began more than ten years ago when I was playing Half-Life for the first time and noticed that some maps should really overlap if they were connected the way they were at the loading location. (e.g. there's this huge area, then a shallow path, right turn, load, right turn again and then another huge area).

I've been wondering since, what would the map of entire Half-Life look like if you merge all the maps together...

...

Then, after all these years, I suddenly realized that it's actually not that hard.

So, here you go, this utility does exactly that -- it loads a valve bsp file, then finds all the connections and loads them next.

Video of a fly around the entire Half-Life world: http://www.youtube.com/watch?v=-SaRdQdW-Ik

Half-Life 1:

Half-Life 2:

What it loads

  • all the bsp brushed geometry, including some weird detached stuff
  • lightmaps

What it does not load

  • models
  • material textures (they take fuckload of videomem and look like shit anyway)
  • bsp visibility info, as there's obviously no point in doing that

Supported platforms

  • Linux
  • Mac OS X
  • Windows
  • Raspberry Pi

Supported games

Everything with VBSP version 19 should work. Tested on Half-Life: Source and Half-Life 2.

Half-Life 2 has some issues:

  • no displacements
  • incorrect parsing of lightmap format for ver20 vbsp

How to

  1. Get an appropriate binary from bin/, or compile one if you're on linux or raspberry (see below)
  2. Get a Half-Life: Source (not the vanilla one) gcf file and extract it somewhere
  3. win32/osx: drag-n-drop c0a0.bsp onto application; linux/rpi: see below
  4. Wait 10-30 seconds (I was too lazy to code a loader screen)
  5. ?????
  6. Have fun

How to compile (linux/raspberry)

Prerequisites:

  • common:
    • gcc
    • make
  • Linux:
    • libSDL
  • Raspberry:
    • broadcom sdk in /opt/vc (pre-installed on raspbian)
    • no libSDL, no X11 required!
    • /dev/input/event0 and 1 are expected to be a mouse and a keyboard respectively
  1. git clone https://github.com/w23/OpenSource.git
  2. cd OpenSource
  3. git submodule init
  4. git submodule update
  5. make -C 3p/kapusha -j5
    • raspberry: make -C 3p/kapusha RPI=1
  6. make -j5
    • raspberry: make RPI=1
  7. ./OpenSource /path/to/gcf/root/hl1/ c0a0
    • raspberry: ./OpenSource /path/to/gcf/root/hl1/ c0a0 32

Other platforms (win32/osx): there are nice project files!

ISSUES

  • The code is bad and I should feel bad.

Next stop: the huge world of Portal 2