38
.forgejo/workflows/construct.yaml
Normal file
|
@ -0,0 +1,38 @@
|
|||
name: Construct
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: dependencies
|
||||
run: |
|
||||
apt update
|
||||
apt install -y \
|
||||
imagemagick wget
|
||||
|
||||
- name: fteqw
|
||||
run: wget https://www.fteqw.org/dl/fteqw_linux64.zip && unzip fteqw_linux64.zip
|
||||
|
||||
- name: setup env
|
||||
run: |
|
||||
echo $PRIVATE_KEY > private-key.pem
|
||||
echo $PUBLIC_KEY > public-key.pem
|
||||
env:
|
||||
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
|
||||
PUBLIC_KEY: ${{ secrets.PUBLIC_KEY }}
|
||||
CERTHOST: ${{ secrets.CERTHOST }}
|
||||
|
||||
- name: construct pkglists
|
||||
run: make && rm private-key.pem public-key.pem
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: pkg-lists
|
||||
path: pkgs/*.txt
|
13
Addons/cstrike/consistencypack.decl
Normal file
|
@ -0,0 +1,13 @@
|
|||
packageInfo consistencypack
|
||||
{
|
||||
"title" "Consistency Pack"
|
||||
"ver" "1.0"
|
||||
"gamedir" "cstrike"
|
||||
"url" "http://fastdl.idtech.space/~halflife/cstrike/addon_Suparsonik_ConsistencyPack.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/addon_Suparsonik_ConsistencyPack.pk4"
|
||||
"author" "Suparsonik, eukara"
|
||||
"desc" "Consistent hands, for both teams. Using original assets."
|
||||
"website" "https://gamebanana.com/mods/227001"
|
||||
"license" "Freeware"
|
||||
"gamename" "halflife"
|
||||
}
|
10
Addons/valve/mdl-kimilil-w_security.decl
Normal file
|
@ -0,0 +1,10 @@
|
|||
packageInfo mdl-kimilil-w_security
|
||||
{
|
||||
"title" "colormap-able item_security"
|
||||
"author" "kimilil"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/mdl-kimilil-w_security.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/mdl-kimilil-w_security.pk4"
|
||||
"website" "https://twhl.info/vault/view/6954"
|
||||
"desc" "A colormap-able item_security model (models/w_security.mdl) for all your security card puzzle needs. Colormap is the feature used on multiplayer models that gives you the ability to specify a `top` and `bottom` colours for the model. But you can apply a colormap to just about any entity displaying a model, and this model takes advantage of that. No need to edit and compile a separate texture for each colour into the model, now you can have all the colours in one texture!"
|
||||
}
|
BIN
Addons/valve/mdl-kimilil-w_security.png
Normal file
After Width: | Height: | Size: 89 KiB |
10
Campaigns/hl2/ssky_c0m0.decl
Normal file
|
@ -0,0 +1,10 @@
|
|||
packageInfo BorgCubeJanitor-ssky_c0m0
|
||||
{
|
||||
"title" "Metropolice Outpost"
|
||||
"author" "BorgCubeJanitor"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life 2/Addons/map-BorgCubeJanitor-ssky_c0m0.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/hl2/map-BorgCubeJanitor-ssky_c0m0.pk4"
|
||||
"website" "https://twhl.info/vault/view/6330"
|
||||
"desc" "This map feautures non-linear level design and some well hidden secrets."
|
||||
}
|
BIN
Campaigns/hl2/ssky_c0m0.jpg
Normal file
After Width: | Height: | Size: 86 KiB |
10
Campaigns/valve/archus_aradius-dt1m1.decl
Normal file
|
@ -0,0 +1,10 @@
|
|||
packageInfo archus_aradius-dt1m1
|
||||
{
|
||||
"title" "Data Transmission Demo"
|
||||
"author" "Archus Aradius"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/map-Archus_Aradius-dt1m1.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/map-Archus_Aradius-dt1m1.pk4"
|
||||
"website" "https://twhl.info/vault/view/6964"
|
||||
"startmap" "dt1m1"
|
||||
}
|
BIN
Campaigns/valve/dt1m1.jpg
Normal file
After Width: | Height: | Size: 272 KiB |
BIN
Campaigns/valve/puzz1_storage.png
Normal file
After Width: | Height: | Size: 950 KiB |
11
Campaigns/valve/vef4-puzz1_storage.decl
Normal file
|
@ -0,0 +1,11 @@
|
|||
packageInfo vef4-puzz1_storage
|
||||
{
|
||||
"title" "puzz1_storage"
|
||||
"author" "vef4"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/map-vef4-puzz1_storage.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/map-vef4-puzz1_storage.pk4"
|
||||
"website" "https://twhl.info/vault/view/6957"
|
||||
"startmap" "puzz1_storage"
|
||||
"desc" "A small singleplayer storage themed puzzle. Use your skillful mind to escape from the building."
|
||||
}
|
3
Makefile
|
@ -2,3 +2,6 @@ all: list
|
|||
|
||||
list:
|
||||
./start.sh
|
||||
|
||||
index:
|
||||
./index.sh
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
packageInfo as_alpine
|
||||
{
|
||||
"title" "as_alpine"
|
||||
"title" "Alpine
"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Drake"
|
||||
"email" "uberdrake@hotmail.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_alpine.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_alpine.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
packageInfo as_alps
|
||||
{
|
||||
"title" "as_alps"
|
||||
"title" "Alps"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Mojo"
|
||||
"email" "mojouser@hotmail.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_alps.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_alps.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
packageInfo as_bybybirdy
|
||||
{
|
||||
"title" "as_bybybirdy"
|
||||
"title" "as_ByByBirdy"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "LanThief"
|
||||
"email" "chris@i-enternet.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_bybybirdy.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_bybybirdy.pk4"
|
||||
"website" "http://www.mourningafter.com/hollowpoint
"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@ packageInfo as_canyon_drive
|
|||
{
|
||||
"title" "as_canyon_drive"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "bloody.Be@meR"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_canyon_drive.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_canyon_drive.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
packageInfo as_convoy
|
||||
{
|
||||
"title" "as_convoy"
|
||||
"title" "Renegade's Convoy"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "[G9]Renegade"
|
||||
"email" "Operative08@hotmail.com
"
|
||||
"icq" "40322029"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_convoy.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_convoy.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
packageInfo as_cowboy
|
||||
{
|
||||
"title" "as_cowboy"
|
||||
"title" "The Ride Of the Space Cowboys
"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Brian 'FLETCH' Thomas
"
|
||||
"email" "alan_smithee007@hotmail.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_cowboy.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_cowboy.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
packageInfo as_downzone21
|
||||
{
|
||||
"title" "as_downzone21"
|
||||
"title" "Downzone"
|
||||
"ver" "2.1"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Maarten Bouwman"
|
||||
"email" "mb_wp@yahoo.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_downzone21.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_downzone21.pk4"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,8 @@ packageInfo as_elborder
|
|||
{
|
||||
"title" "as_elborder"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Kris"
|
||||
"email" "Kstefana@optonline.net"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_elborder.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_elborder.pk4"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,8 @@ packageInfo as_embbeta
|
|||
{
|
||||
"title" "as_embbeta"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Rainey"
|
||||
"email" "RoughRainey@bigpond.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_embbeta.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_embbeta.pk4"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
packageInfo as_extract
|
||||
{
|
||||
"title" "as_extract"
|
||||
"title" "Extract!"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_extract.pk4"
|
||||
|
|
|
@ -2,7 +2,8 @@ packageInfo as_forest
|
|||
{
|
||||
"title" "as_forest"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Poor Yurik"
|
||||
"email" "yak@lvcm.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_forest.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_forest.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
packageInfo as_gardenmaze_beta5
|
||||
{
|
||||
"title" "as_gardenmaze_beta5"
|
||||
"title" "AS_GARDENMAZE"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Zubi_Doo"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_gardenmaze_beta5.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_gardenmaze_beta5.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
packageInfo as_highrise2
|
||||
{
|
||||
"title" "as_highrise2"
|
||||
"title" "Highrise"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "MattS aka [BA]Pantera
"
|
||||
"email" "pantera@hushmail.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_highrise2.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_highrise2.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
packageInfo as_innercity
|
||||
{
|
||||
"title" "as_innercity"
|
||||
"title" "Inner city"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Toni Hiltunen
"
|
||||
"email" "toni_aq2000@planetquake.com
"
|
||||
"website" "http://www.geocities.com/hiltunen_toni"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_innercity.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_innercity.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
packageInfo as_intercept
|
||||
{
|
||||
"title" "as_intercept"
|
||||
"title" "Intercept"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "[MX]LanThief
"
|
||||
"website" "http://homepages.go.com/~nightscare/cs
"
|
||||
"email" "chris@i-enternet.com
"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_intercept.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_intercept.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
packageInfo as_iraq
|
||||
{
|
||||
"title" "as_iraq"
|
||||
"title" "Iraqi Stronghold"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Mr_Deth, Zaphod Beeblebrox
"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_iraq.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_iraq.pk4"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,8 @@ packageInfo as_lanzelot_b1
|
|||
{
|
||||
"title" "as_lanzelot_b1"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Dont_Fear_The_Reaper"
|
||||
"email" "makenikku@hotmail.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_lanzelot_b1.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_lanzelot_b1.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
packageInfo as_mideast_beta3
|
||||
{
|
||||
"title" "as_mideast_beta3"
|
||||
"title" "Mideast"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Mite-Ax"
|
||||
"email" "arb9@ukc.ac.uk"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_mideast_beta3.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_mideast_beta3.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
packageInfo as_morpheus
|
||||
{
|
||||
"title" "as_morpheus"
|
||||
"title" "Morpheus"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Skim, Dallen
"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_morpheus.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_morpheus.pk4"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
packageInfo as_resident
|
||||
{
|
||||
"title" "as_resident"
|
||||
"title" "Residents attack"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_resident.pk4"
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
packageInfo as_rising_sun
|
||||
{
|
||||
"title" "as_rising_sun"
|
||||
"title" "Rising Sun"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "SparX"
|
||||
"email" "sparx@artlover.com
"
|
||||
"website" "http://mapdesign.swissquake.ch
"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_rising_sun.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_rising_sun.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
packageInfo as_riverside
|
||||
{
|
||||
"title" "as_riverside"
|
||||
"title" "Riverside"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Zaka"
|
||||
"email" "zaka@mbnet.fi"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_riverside.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_riverside.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
packageInfo as_roadkill
|
||||
{
|
||||
"title" "as_roadkill"
|
||||
"title" "Roadkill!"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "NiNja_007"
|
||||
"email" "paul.murphy@ntlworld.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_roadkill.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_roadkill.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
packageInfo as_rubble
|
||||
{
|
||||
"title" "as_rubble"
|
||||
"title" "OilRig"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Omicron"
|
||||
"email" "alwhiting@home.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_rubble.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_rubble.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
packageInfo as_sada-city
|
||||
{
|
||||
"title" "as_sada-city"
|
||||
"title" "SADA-city"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "SNIPER[SAD]"
|
||||
"email_alt" "sniper.sad@redseven.de"
|
||||
"email" "sniper@sadahq.de"
|
||||
"website" "http://www.sadahq.de"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_sada-city.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_sada-city.pk4"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,9 @@ packageInfo as_sanpablo
|
|||
{
|
||||
"title" "as_sanpablo"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "[PAB]Keoki
"
|
||||
"email" "overfeind@my-deja.com
"
|
||||
"icq" "60311863"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_sanpablo.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_sanpablo.pk4"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,9 @@ packageInfo as_sanpablo2
|
|||
{
|
||||
"title" "as_sanpablo2"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "[PAB]Keoki
"
|
||||
"email" "overfeind@my-deja.com
"
|
||||
"icq" "60311863"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_sanpablo2.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_sanpablo2.pk4"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,9 @@ packageInfo as_snowconvoy
|
|||
{
|
||||
"title" "as_snowconvoy"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "[G9]Renegade"
|
||||
"email" "operative08@hotmail.com"
|
||||
"icq" "40322029"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_snowconvoy.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_snowconvoy.pk4"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@ packageInfo as_snowy
|
|||
{
|
||||
"title" "as_snowy"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Plaguebearer"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_snowy.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_snowy.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
packageInfo as_swissbank
|
||||
{
|
||||
"title" "as_swissbank"
|
||||
"title" "SwissBank"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Slapshot"
|
||||
"email" "slapshot_73@hotmail.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_swissbank.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_swissbank.pk4"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,8 @@ packageInfo as_tundra_b1
|
|||
{
|
||||
"title" "as_tundra_b1"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Zaphod_Beeblebrox"
|
||||
"email" "zaphod_beeblebrox@eudoramail.com"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_tundra_b1.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_tundra_b1.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
packageInfo as_tunnel
|
||||
{
|
||||
"title" "as_tunnel"
|
||||
"title" "TUNNEL-Escort"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Brett Rieley"
|
||||
"email" "roscoe4420@aol.com
"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_tunnel.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_tunnel.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
packageInfo as_venice_ma_v1
|
||||
{
|
||||
"title" "as_venice_ma_v1"
|
||||
"title" "Venice"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Xavier"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_venice_ma_v1.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_venice_ma_v1.pk4"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
packageInfo as_witness_b3
|
||||
{
|
||||
"title" "as_witness_b3"
|
||||
"title" "Witness"
|
||||
"gamename" "halflife"
|
||||
"author" "Unknown"
|
||||
"author" "Lacos"
|
||||
"email" "henry@tdcom.net"
|
||||
"url" "https://fastdl.idtech.space/~halflife/cstrike/map-as_witness_b3.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/map-as_witness_b3.pk4"
|
||||
}
|
||||
|
|
10
Maps/hl2mp/dm_depo.decl
Normal file
|
@ -0,0 +1,10 @@
|
|||
packageInfo dm_depo
|
||||
{
|
||||
"title" "dm_depo"
|
||||
"author" "BorgCubeJanitor"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life 2/Addons/map-BorgCubeJanitor-dm_depo.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/hl2/map-BorgCubeJanitor-dm_depo.pk4"
|
||||
"website" "https://twhl.info/vault/view/6383"
|
||||
"desc" "A multiplayer variation of my Half-Life Episode 2 single player map (Metropolice Outpost). Map optimized for more smooth and dynamic gameplay ( added more pathways and removed some props ). Also you can find on map decent amount of slams for setting up insidious traps ( layout of this map extremely favors it )."
|
||||
}
|
BIN
Maps/hl2mp/dm_depo.jpg
Normal file
After Width: | Height: | Size: 67 KiB |
9
Maps/valve/corecritical.decl
Normal file
|
@ -0,0 +1,9 @@
|
|||
packageInfo corecritical
|
||||
{
|
||||
"title" "Core Critical"
|
||||
"author" "Hezus"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/map-Hezus-corecritical.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/map-Hezus-corecritical.pk4"
|
||||
"website" "https://twhl.info/vault/view/6862
|
||||
}
|
BIN
Maps/valve/corecritical.jpg
Normal file
After Width: | Height: | Size: 99 KiB |
10
Maps/valve/dm_cardboard.decl
Normal file
|
@ -0,0 +1,10 @@
|
|||
packageInfo dm_cardboard
|
||||
{
|
||||
"title" "dm_cardboard"
|
||||
"author" "Caluminium"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/map-Caluminium-dm_cardboard.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/map-Caluminium-dm_cardboard.pk4"
|
||||
"website" "https://twhl.info/vault/view/6704"
|
||||
"desc" "A deathmatch map made out of cardboard - beware of the traps."
|
||||
}
|
BIN
Maps/valve/dm_cardboard.jpg
Normal file
After Width: | Height: | Size: 191 KiB |
9
Maps/valve/dm_demoncore.decl
Normal file
|
@ -0,0 +1,9 @@
|
|||
packageInfo dm_demoncore
|
||||
{
|
||||
"title" "dm_demoncore"
|
||||
"author" "BorgCubeJanitor"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/map-BorgCubeJanitor-dm_democore.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/map-BorgCubeJanitor-dm_democore.pk4"
|
||||
"website" "https://twhl.info/vault/view/6656"
|
||||
}
|
BIN
Maps/valve/dm_demoncore.jpg
Normal file
After Width: | Height: | Size: 107 KiB |
9
Maps/valve/dm_diving_pools.decl
Normal file
|
@ -0,0 +1,9 @@
|
|||
packageInfo dm_diving_pools
|
||||
{
|
||||
"title" "dm_diving_pools"
|
||||
"author" "BorgCubeJanitor"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/map-BorgCubeJanitor-dm_diving_pools.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/map-BorgCubeJanitor-dm_diving_pools.pk4"
|
||||
"website" "https://twhl.info/vault/view/6675"
|
||||
}
|
BIN
Maps/valve/dm_diving_pools.jpg
Normal file
After Width: | Height: | Size: 125 KiB |
9
Maps/valve/dm_editor.decl
Normal file
|
@ -0,0 +1,9 @@
|
|||
packageInfo dm_editor
|
||||
{
|
||||
"title" "dm_editor"
|
||||
"author" "Caluminium"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/map-Caluminium-dm_editor.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/map-Caluminium-dm_editor.pk4"
|
||||
"website" "https://twhl.info/vault/view/6959"
|
||||
}
|
BIN
Maps/valve/dm_editor.jpg
Normal file
After Width: | Height: | Size: 207 KiB |
9
Maps/valve/dm_isle.decl
Normal file
|
@ -0,0 +1,9 @@
|
|||
packageInfo dm_isle
|
||||
{
|
||||
"title" "dm_isle"
|
||||
"author" "Caluminium"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/map-Caluminium-dm_isle.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/map-Caluminium-dm_isle.pk4"
|
||||
"website" "https://twhl.info/vault/view/6623"
|
||||
}
|
BIN
Maps/valve/dm_isle.jpg
Normal file
After Width: | Height: | Size: 214 KiB |
9
Maps/valve/dm_macerator.decl
Normal file
|
@ -0,0 +1,9 @@
|
|||
packageInfo dm_macerator
|
||||
{
|
||||
"title" "dm_macerator"
|
||||
"author" "BorgCubeJanitor"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/map-BorgCubeJanitor-dm_macerator.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/map-BorgCubeJanitor-dm_macerator.pk4"
|
||||
"website" "https://twhl.info/vault/view/6969"
|
||||
}
|
BIN
Maps/valve/dm_macerator.jpg
Normal file
After Width: | Height: | Size: 244 KiB |
10
Maps/valve/dm_solvent.decl
Normal file
|
@ -0,0 +1,10 @@
|
|||
packageInfo dm_solvent
|
||||
{
|
||||
"title" "dm_solvent"
|
||||
"author" "043e9028"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/map-043e9028-dm_solvent.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/map-043e9028-dm_solvent.pk4"
|
||||
"website" "https://twhl.info/vault/view/6910"
|
||||
"desc" "Industrial themed open map for Half-Life: Deathmatch."
|
||||
}
|
BIN
Maps/valve/dm_solvent.jpg
Normal file
After Width: | Height: | Size: 335 KiB |
10
Maps/valve/dm_spaceport_98.decl
Normal file
|
@ -0,0 +1,10 @@
|
|||
packageInfo dm_spaceport_98
|
||||
{
|
||||
"title" "Space Port 98"
|
||||
"author" "Shambles"
|
||||
"gamename" "halflife"
|
||||
"local_url" "/Net/Games/Games/PC/Half-Life/Addons/map-Shambles-dm_spaceport_98.pk4"
|
||||
"url" "http://fastdl.idtech.space/~halflife/valve/map-Shambles-dm_spaceport_98.pk4"
|
||||
"website" "https://twhl.info/vault/view/6985"
|
||||
"desc" "Welcome to Space Port 98! A Half-Life Deathmatch map in space... where no one can hear you frag. Long-jump across conveyor belts and try sniping each other in the anti-gravity room, but be wary of its kill switch that can pressed in the main lobby!"
|
||||
}
|
BIN
Maps/valve/dm_spaceport_98.jpg
Normal file
After Width: | Height: | Size: 74 KiB |
|
@ -3,11 +3,10 @@ packageInfo cstrike
|
|||
"title" "Counter-Strike"
|
||||
"ver" "1.5"
|
||||
"gamedir" "cstrike"
|
||||
"url" "http://fastdl.idtech.space/~halflife/cstrike/mod-CounterStrikeTeam-cstrike.pk3"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/mod-CounterStrikeTeam-cstrike.pk3"
|
||||
"url" "http://fastdl.idtech.space/~halflife/cstrike/mod-CounterStrikeTeam-cstrike.pk4"
|
||||
"local_url" "/Net/Games/idtech.space/~halflife/cstrike/mod-CounterStrikeTeam-cstrike.pk4"
|
||||
"author" "Counter-Strike Team"
|
||||
"desc" "The original Counter-Strike mod files from version 1.5, the last free version."
|
||||
"website" "http://www.counter-strike.net"
|
||||
"gamename" "halflife"
|
||||
"depends" "cstrike-patch-tacticalretreat"
|
||||
}
|
||||
|
|
53
convert-previews.sh
Executable file
|
@ -0,0 +1,53 @@
|
|||
#!/bin/sh
|
||||
|
||||
# This scripts resizes all the previews
|
||||
# into _files so they can be uploaded
|
||||
# to a CDN delivering package previews
|
||||
|
||||
DECL="$1"
|
||||
DECL_IMG=$(basename "$1" | cut -d '.' -f 1)
|
||||
DECLDIR=$(dirname "$DECL")
|
||||
TYPE=$(dirname "$DECLDIR")
|
||||
TYPE=$(basename "$TYPE")
|
||||
GAMEDIR=$(basename "$DECLDIR")
|
||||
NAME=$(grep packageInfo "$DECL" | awk '{ print $2 }')
|
||||
GPREFIX=$GAMEDIR
|
||||
|
||||
if [ $TYPE = Addons ]
|
||||
then
|
||||
PREFIX="addon"
|
||||
fi
|
||||
|
||||
if [ $TYPE = Maps ]
|
||||
then
|
||||
PREFIX="map"
|
||||
fi
|
||||
|
||||
if [ $TYPE = Mods ]
|
||||
then
|
||||
PREFIX="mod"
|
||||
fi
|
||||
|
||||
if [ $TYPE = Campaigns ]
|
||||
then
|
||||
PREFIX="campaign"
|
||||
fi
|
||||
|
||||
if [ $TYPE = Patches ]
|
||||
then
|
||||
PREFIX="patch"
|
||||
fi
|
||||
|
||||
PKGNAME=$(strtolower "$GPREFIX"-"$PREFIX"-"$NAME")
|
||||
|
||||
if [ -f "$DECLDIR/$DECL_IMG.png" ]
|
||||
then
|
||||
convert -resize 128x128\! "$DECLDIR/$DECL_IMG.png" ./_files/$PKGNAME.jpg
|
||||
echo "resized to ./_files/$PKGNAME.jpg"
|
||||
fi
|
||||
|
||||
if [ -f "$DECLDIR/$DECL_IMG.jpg" ]
|
||||
then
|
||||
convert -resize 128x128\! "$DECLDIR/$DECL_IMG.jpg" ./_files/$PKGNAME.jpg
|
||||
echo "resized to ./_files/$PKGNAME.jpg"
|
||||
fi
|
112
decl-to-pkg.sh
|
@ -1,5 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
# This scripts takes a .decl file
|
||||
# and prints the projected package entry.
|
||||
# It will skip it if it lacks necessary
|
||||
# meta data.
|
||||
|
||||
if [ ! -d ./index ]
|
||||
then
|
||||
echo "run 'make index' first"
|
||||
exit 2
|
||||
fi
|
||||
|
||||
mkdir -p pkgs
|
||||
|
||||
DECL="$1"
|
||||
|
@ -16,7 +27,6 @@ VERSION=$(grep \"ver\" "$DECL" | awk -F"\"" '{ print $4 }')
|
|||
FILE=$(grep \"file\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
URL_FALLBACK=$(grep \"url\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
URL=$(grep \"url_archive\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
LOCAL_URL=$(grep \"local_url\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
AUTHOR=$(grep \"author\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
DESCRIPTION=$(grep \"desc\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
WEBSITE=$(grep \"website\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
|
@ -25,6 +35,7 @@ PKGLIST=$(grep \"gamename\" "$DECL" | awk -F"\"" '{ print $4 }')
|
|||
PREVIEW=$(grep \"preview\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
PACKPREFIX=$(grep \"packprefix\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
DEPENDS=$(grep \"depends\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
STARTMAP=$(grep \"startmap\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
|
||||
if [ -z "$URL" ]
|
||||
then
|
||||
|
@ -58,29 +69,12 @@ then
|
|||
VERSION="1.0"
|
||||
fi
|
||||
|
||||
if [ -z "$LOCAL_URL" ]
|
||||
then
|
||||
LOCAL_URL="$(pwd)/_files/$(basename "$URL")"
|
||||
fi
|
||||
|
||||
if [ ! -f "$LOCAL_URL" ]
|
||||
then
|
||||
printf "Error: Package %s not on local server.\n" "$NAME" >&2
|
||||
exit 2
|
||||
fi
|
||||
|
||||
FILESIZE=$(du -b "$LOCAL_URL" | awk '{ print $1 }')
|
||||
SHA512=$(sha512sum "$LOCAL_URL" | awk '{ print $1 }')
|
||||
|
||||
if [ -n "$PACKPREFIX" ]
|
||||
then
|
||||
QHASH=$(fteqw -qhash -prefix "$PACKPREFIX" "$LOCAL_URL")
|
||||
SIGNATURE=$(fteqw -privkey ~/Library/Auth/eukara.priv -pubkey ~/Library/Auth/eukara.pub -prefix "$PACKPREFIX" -certhost eukara -sign2 "$LOCAL_URL")
|
||||
else
|
||||
QHASH=$(fteqw -qhash "$LOCAL_URL")
|
||||
SIGNATURE=$(fteqw -privkey ~/Library/Auth/eukara.priv -pubkey ~/Library/Auth/eukara.pub -certhost eukara -sign2 "$LOCAL_URL")
|
||||
fi
|
||||
|
||||
AUTHOR_SHORT=$(echo "$AUTHOR" | sed 's/ /_/g' | sed 's/\,//g'| sed 's/-//g' | sed "s|'||g" )
|
||||
VERSION_SHORT=$(strtolower "$VERSION" | sed 's/ /_/g')
|
||||
|
||||
|
@ -92,7 +86,7 @@ then
|
|||
|
||||
if [ -z "$DESCRIPTION" ]
|
||||
then
|
||||
DESCRIPTION="#ADDON_DEFAULTDESCRIPTION"
|
||||
DESCRIPTION="Game enhancing addon."
|
||||
fi
|
||||
fi
|
||||
|
||||
|
@ -104,7 +98,7 @@ then
|
|||
|
||||
if [ -z "$DESCRIPTION" ]
|
||||
then
|
||||
DESCRIPTION="#MAP_DEFAULTDESCRIPTION"
|
||||
DESCRIPTION="Open ended and/or multiplayer levels."
|
||||
fi
|
||||
fi
|
||||
|
||||
|
@ -119,7 +113,19 @@ then
|
|||
|
||||
if [ -z "$DESCRIPTION" ]
|
||||
then
|
||||
DESCRIPTION="#MOD_DEFAULTDESCRIPTION"
|
||||
DESCRIPTION="A total-conversion or modification."
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ $TYPE = Campaigns ]
|
||||
then
|
||||
PREFIX="campaign"
|
||||
CATEGORY="Campaign"
|
||||
PRIORITY=30
|
||||
|
||||
if [ -z "$DESCRIPTION" ]
|
||||
then
|
||||
DESCRIPTION="A single player campaign."
|
||||
fi
|
||||
fi
|
||||
|
||||
|
@ -131,25 +137,64 @@ then
|
|||
|
||||
if [ -z "$DESCRIPTION" ]
|
||||
then
|
||||
DESCRIPTION="#PATCH_DEFAULTDESCRIPTION"
|
||||
DESCRIPTION="Updates, tweaks and fixes for the game."
|
||||
fi
|
||||
fi
|
||||
|
||||
PKGNAME=$(strtolower "$GPREFIX"-"$PREFIX"-"$NAME")
|
||||
FILE="$PREFIX"-"$AUTHOR_SHORT"-"$NAME".pk4
|
||||
|
||||
# if we lack the hash, we probably lack everything else.
|
||||
# update the index for this package
|
||||
if [ ! -f "index/$PKGNAME/qhash" ]
|
||||
then
|
||||
./index-decl.sh "$1"
|
||||
fi
|
||||
|
||||
if [ -f "index/$PKGNAME/qhash" ]
|
||||
then
|
||||
QHASH="$(head -n 1 index/$PKGNAME/qhash)"
|
||||
else
|
||||
echo "skipping due to missing index/$PKGNAME/qhash"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -f "index/$PKGNAME/sha512" ]
|
||||
then
|
||||
SHA512="$(head -n 1 index/$PKGNAME/sha512)"
|
||||
else
|
||||
echo "skipping due to missing index/$PKGNAME/sha512"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -f "index/$PKGNAME/signature" ]
|
||||
then
|
||||
SIGNATURE="$(head -n 1 index/$PKGNAME/signature)"
|
||||
else
|
||||
echo "skipping due to missing index/$PKGNAME/signature"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -f "index/$PKGNAME/size" ]
|
||||
then
|
||||
SIZE="$(head -n 1 index/$PKGNAME/size)"
|
||||
else
|
||||
echo "skipping due to missing index/$PKGNAME/size"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
if [ -f "index/$PKGNAME/maplist" ]
|
||||
then
|
||||
MAPLIST="$(head -n 1 index/$PKGNAME/maplist)"
|
||||
fi
|
||||
|
||||
if [ -z "$URL" ]
|
||||
then
|
||||
printf "Error: Package %s no remote url.\n" "$NAME" >&2
|
||||
echo "scp \"$LOCAL_URL\" debian@idtech.space:/var/www/fastdl/~$PKGLIST/$GAMEDIR/$FILE" >> SCP_FILES
|
||||
URL="http://fastdl.idtech.space/~$PKGLIST/$GAMEDIR/$FILE"
|
||||
echo "\"url\" \"$URL\"" >> "$DECL"
|
||||
# exit 2
|
||||
exit 2
|
||||
fi
|
||||
|
||||
IMG=$(echo "$DECL" | sed 's/\\.decl//g')
|
||||
|
||||
if [ -f "$DECLDIR/$DECL_IMG.png" ]
|
||||
then
|
||||
convert -resize 128x128\! "$DECLDIR/$DECL_IMG.png" ./_files/$PKGNAME.jpg
|
||||
|
@ -160,16 +205,19 @@ then
|
|||
convert -resize 128x128\! "$DECLDIR/$DECL_IMG.jpg" ./_files/$PKGNAME.jpg
|
||||
fi
|
||||
|
||||
MAPLIST=$(unzip -l "$LOCAL_URL" | grep \\.bsp | awk '{ print $4 }' | sed 's/maps\//\"map=/g' | sed 's/\.bsp/\"/g' | tr '\n' ' ')
|
||||
|
||||
if [ -n "$PREVIEW" ]
|
||||
then
|
||||
PREVIEWSTR="\"preview=$PREVIEW\""
|
||||
fi
|
||||
|
||||
if [ -n "$STARTMAP" ]
|
||||
then
|
||||
MAPLIST="\"map=$STARTMAP\""
|
||||
fi
|
||||
|
||||
if [ -n "$MAPLIST" ]
|
||||
then
|
||||
echo "\"$PKGNAME\" \"priority=$PRIORITY\" \"category=$CATEGORY\" \"title=$TITLE\" \"ver=$VERSION\" \"gamedir=$GAMEDIR\" \"file=$FILE\" \"packprefix=$PACKPREFIX\" \"url=$URL\" \"qhash=$QHASH\" \"author=$AUTHOR\" \"desc=$DESCRIPTION\" \"website=$WEBSITE\" \"depends=$DEPENDS\" \"dlsize=$FILESIZE\" \"sha512=$SHA512\" \"license=$LICENSE\" \"sign=eukara:$SIGNATURE\" $MAPLIST $PREVIEWSTR" >> "pkgs/$PKGLIST.txt"
|
||||
echo "\"$PKGNAME\" \"priority=$PRIORITY\" \"category=$CATEGORY\" \"title=$TITLE\" \"ver=$VERSION\" \"gamedir=$GAMEDIR\" \"file=$FILE\" \"packprefix=$PACKPREFIX\" \"url=$URL\" \"qhash=$QHASH\" \"author=$AUTHOR\" \"desc=$DESCRIPTION\" \"website=$WEBSITE\" \"depends=$DEPENDS\" \"dlsize=$FILESIZE\" \"sha512=$SHA512\" \"license=$LICENSE\" \"sign=$AUTH_HOST:$SIGNATURE\" $MAPLIST $PREVIEWSTR" >> "pkgs/$PKGLIST.txt"
|
||||
else
|
||||
echo "\"$PKGNAME\" \"priority=$PRIORITY\" \"category=$CATEGORY\" \"title=$TITLE\" \"ver=$VERSION\" \"gamedir=$GAMEDIR\" \"file=$FILE\" \"packprefix=$PACKPREFIX\" \"url=$URL\" \"qhash=$QHASH\" \"author=$AUTHOR\" \"desc=$DESCRIPTION\" \"website=$WEBSITE\" \"depends=$DEPENDS\" \"dlsize=$FILESIZE\" \"sha512=$SHA512\" \"license=$LICENSE\" \"sign=eukara:$SIGNATURE\" $PREVIEWSTR" >> "pkgs/$PKGLIST.txt"
|
||||
echo "\"$PKGNAME\" \"priority=$PRIORITY\" \"category=$CATEGORY\" \"title=$TITLE\" \"ver=$VERSION\" \"gamedir=$GAMEDIR\" \"file=$FILE\" \"packprefix=$PACKPREFIX\" \"url=$URL\" \"qhash=$QHASH\" \"author=$AUTHOR\" \"desc=$DESCRIPTION\" \"website=$WEBSITE\" \"depends=$DEPENDS\" \"dlsize=$FILESIZE\" \"sha512=$SHA512\" \"license=$LICENSE\" \"sign=$AUTH_HOST:$SIGNATURE\" $PREVIEWSTR" >> "pkgs/$PKGLIST.txt"
|
||||
fi
|
||||
|
|
130
index-decl.sh
Executable file
|
@ -0,0 +1,130 @@
|
|||
#!/bin/sh
|
||||
|
||||
# This script takes the path of a .decl file
|
||||
# and puts information from local mirrors
|
||||
# of the file into ./index/$PKGNAME/* files
|
||||
|
||||
# The files are separated so they can be
|
||||
# individually checked/regenerated when
|
||||
# missing as neccessary
|
||||
|
||||
# We need to generate the sums and signatures
|
||||
# somewhere before we let the remote
|
||||
# CI/build process assemble the package lists
|
||||
# as the remote has no access to local mirrors
|
||||
# of the files.
|
||||
|
||||
DECL="$1"
|
||||
DECL_IMG=$(basename "$1" | cut -d '.' -f 1)
|
||||
DECLDIR=$(dirname "$DECL")
|
||||
TYPE=$(dirname "$DECLDIR")
|
||||
TYPE=$(basename "$TYPE")
|
||||
GAMEDIR=$(basename "$DECLDIR")
|
||||
|
||||
# grep the values
|
||||
NAME=$(grep packageInfo "$DECL" | awk '{ print $2 }')
|
||||
URL_FALLBACK=$(grep \"url\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
URL=$(grep \"url_archive\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
LOCAL_URL=$(grep \"local_url\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
PKGLIST=$(grep \"gamename\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
PACKPREFIX=$(grep \"packprefix\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
STARTMAP=$(grep \"startmap\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
|
||||
if [ -z "$URL" ]
|
||||
then
|
||||
# If it's public, it has to at least be this.
|
||||
URL="$URL_FALLBACK"
|
||||
fi
|
||||
|
||||
if [ -z "$LOCAL_URL" ]
|
||||
then
|
||||
LOCAL_URL="$(pwd)/_files/$(basename "$URL")"
|
||||
fi
|
||||
|
||||
if [ ! -f "$LOCAL_URL" ]
|
||||
then
|
||||
printf "Error: Package %s not on local server.\n" "$NAME" >&2
|
||||
exit 2
|
||||
fi
|
||||
|
||||
if [ $TYPE = Addons ]
|
||||
then
|
||||
PREFIX="addon"
|
||||
fi
|
||||
|
||||
if [ $TYPE = Maps ]
|
||||
then
|
||||
PREFIX="map"
|
||||
fi
|
||||
|
||||
GPREFIX=$GAMEDIR
|
||||
|
||||
if [ $TYPE = Mods ]
|
||||
then
|
||||
PREFIX="mod"
|
||||
GAMEDIR=$(grep \"gamedir\" "$DECL" | awk -F"\"" '{ print $4 }')
|
||||
fi
|
||||
|
||||
if [ $TYPE = Campaigns ]
|
||||
then
|
||||
PREFIX="campaign"
|
||||
fi
|
||||
|
||||
if [ $TYPE = Patches ]
|
||||
then
|
||||
PREFIX="patch"
|
||||
fi
|
||||
|
||||
PKGNAME=$(strtolower "$GPREFIX"-"$PREFIX"-"$NAME")
|
||||
mkdir -p "index/$PKGNAME"
|
||||
|
||||
if [ ! -f "./index/$PKGNAME/size" ]
|
||||
then
|
||||
FILESIZE=$(du -b "$LOCAL_URL" | awk '{ print $1 }')
|
||||
echo "$FILESIZE" > ./index/$PKGNAME/size
|
||||
echo "Recalculated FILESIZE: $FILESIZE"
|
||||
fi
|
||||
|
||||
if [ ! -f "./index/$PKGNAME/sha512" ]
|
||||
then
|
||||
SHA512=$(sha512sum "$LOCAL_URL" | awk '{ print $1 }')
|
||||
echo "$SHA512" > ./index/$PKGNAME/sha512
|
||||
echo "Recalculated SHA512: $SHA512"
|
||||
fi
|
||||
|
||||
if [ -n "$PACKPREFIX" ]
|
||||
then
|
||||
|
||||
if [ ! -f "./index/$PKGNAME/qhash" ]
|
||||
then
|
||||
QHASH=$(./fteqw -qhash -prefix "$PACKPREFIX" "$LOCAL_URL")
|
||||
echo "$QHASH" > ./index/$PKGNAME/qhash
|
||||
echo "Recalculated QHASH: $QHASH"
|
||||
fi
|
||||
|
||||
if [ ! -f "./index/$PKGNAME/signature" ]
|
||||
then
|
||||
SIGNATURE=$(./fteqw -privkey ./private-key.pem -pubkey ./public-key.pem -prefix "$PACKPREFIX" -certhost $AUTH_HOST -sign2 "$LOCAL_URL")
|
||||
echo "$SIGNATURE" > ./index/$PKGNAME/signature
|
||||
echo "Recalculated SIGNATURE: $SIGNATURE"
|
||||
fi
|
||||
else
|
||||
if [ ! -f "./index/$PKGNAME/qhash" ]
|
||||
then
|
||||
QHASH=$(./fteqw -qhash "$LOCAL_URL")
|
||||
fi
|
||||
|
||||
if [ ! -f "./index/$PKGNAME/signature" ]
|
||||
then
|
||||
SIGNATURE=$(./fteqw -privkey ./private-key.pem -pubkey ./public-key.pem -certhost $AUTH_HOST -sign2 "$LOCAL_URL")
|
||||
echo "$SIGNATURE" > ./index/$PKGNAME/signature
|
||||
echo "Recalculated SIGNATURE: $SIGNATURE"
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ ! -f "./index/$PKGNAME/maplist" ]
|
||||
then
|
||||
MAPLIST=$(unzip -l "$LOCAL_URL" | grep \\.bsp | awk '{ print $4 }' | sed 's/maps\//\"map=/g' | sed 's/\.bsp/\"/g' | tr '\n' ' ')
|
||||
echo "$MAPLIST" > ./index/$PKGNAME/maplist
|
||||
echo "Recalculated MAPLIST: $MAPLIST"
|
||||
fi
|
14
index.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
|
||||
find ./ -type f -print | grep \\.decl | sort > tmplist1
|
||||
cat tmplist1
|
||||
|
||||
TOTAL_PKGS=$(wc -l tmplist1)
|
||||
COUNTER=0
|
||||
|
||||
cat tmplist1 | while read DECL
|
||||
do
|
||||
COUNTER=$((COUNTER+1))
|
||||
./index-decl.sh "$DECL"
|
||||
echo "($COUNTER/$TOTAL_PKGS) $DECL"
|
||||
done
|
1
index/baseq2-patch-nuclide/maplist
Normal file
|
@ -0,0 +1 @@
|
|||
|
1
index/baseq2-patch-nuclide/qhash
Normal file
|
@ -0,0 +1 @@
|
|||
0xfe09b4fb
|
1
index/baseq2-patch-nuclide/sha512
Normal file
|
@ -0,0 +1 @@
|
|||
628f2e7688aa9a79b554d7735a39dfe0dc8006a71e89c8e796155d059f9ba66089a7326c5a18637c7eac6e04c9ddcb8fd01fb4e1c67fd864bf7a95fb6491cef4
|
1
index/baseq2-patch-nuclide/signature
Normal file
|
@ -0,0 +1 @@
|
|||
XN5vM/xt3ROl8y82oUzoaJpLSvxjJBrR3nEhgAEKFnwLo5ymac4tZCmfunrU/QAYV+8drEWNZSeJJezT+TwKjt7ijW9hTK1lZTqwG7BpQB25pDOPF7npkQxz+Bz8JvbuLKVomoXb1uUh/IdcTL5S37zw8Z4ib2sxwdYZX5w+W0h1usT/PFyu0O/pn7STHrkT82N18eZWrPfqD/advsqJcGdUuEOd8+MS+p1NyJHIZuSF/XqlS/WWKQJQWM5wiZQFMGtwP7mGtKIdLvCVmFlXWTT+G9f+YOsZ2ivw5j/vPB8VAUce6vyXFan1+kngBlkUFypQSDIavHJfida6Nl5hYyEviW1l9D9X45MagIeK6gEaAkcKWkaHObxbvZ6yJNssRm1giXyxFliDaogGRfF0TP2MMDDMvxm4wFITmzx1fqMblIxMdH6A1CKRyszdC2eEPvo0lZ841bQer4oYVi7WfOL3nt54E75/utqY+zbXB7p9chXlZMPDddctQQZa4wJY
|
1
index/baseq2-patch-nuclide/size
Normal file
|
@ -0,0 +1 @@
|
|||
3275535
|
1
index/cod-patch-purpleheart/maplist
Normal file
|
@ -0,0 +1 @@
|
|||
|
1
index/cod-patch-purpleheart/qhash
Normal file
|
@ -0,0 +1 @@
|
|||
0x61db7de7
|
1
index/cod-patch-purpleheart/sha512
Normal file
|
@ -0,0 +1 @@
|
|||
ea5ada58d79ebd61d559f598d169d8fc7c8f3f4848623f97700544a1b5381944c111a24f51187a47e62db81c2e09439edffe0bc1bbb2f7ddbfaa2a025c5df732
|
1
index/cod-patch-purpleheart/signature
Normal file
|
@ -0,0 +1 @@
|
|||
JgtXJ3LAyKLFW3RwiPtv0hmERifx2+UTWfg0VwY3xS9V6yAIVSYoo0R0oCaToA5s+a/oAXV9WA08ds8tYJmYQc1H1mxa4fIDkBlKyMc8+Kl2VJFNtyU8X1PN8eSe6t+aM5lvk90uy0GKfbSxA8yyQVglKIwbn2tv/Qi6R6B9SXEiNI1Mo75VeuwXQ77CPFM6jto1iA8zBJz/OenkIQ+EXVYdR4t7d8KnpKuAqnpvpYrPEDO2FLCkHacMzZVosJ8CtlolS/NSpd9aCBgKO/ccaU3rn7HPNTsH5Gs5HunJ0tg8CAE4fBH+bihCJ9rsa4urF1YTGflTMXvQtEc6musoYNQHbzPdXyVjh4kKDRY0UfZbg5pgkCUfAfBldrWtsdcw4ecdZ3m5vlhIaIL7DJq1o5QBhfkUDDV39Ekd5lOEtR+CjqyXokneN1ff6j/WftsZLVbcUzNAqUVq1dSJxjRnwGC0RETSkY2XX/iG8IRlmuxFPQwk/TXJSH9/AK8VbnS9
|
1
index/cod-patch-purpleheart/size
Normal file
|
@ -0,0 +1 @@
|
|||
5278956
|
1
index/cstrike-addon-consistencypack/maplist
Normal file
|
@ -0,0 +1 @@
|
|||
|
1
index/cstrike-addon-consistencypack/qhash
Normal file
|
@ -0,0 +1 @@
|
|||
0x72498e8f
|
1
index/cstrike-addon-consistencypack/sha512
Normal file
|
@ -0,0 +1 @@
|
|||
eb9ff3ff73fc74822144a7acb686e271604afd779c045087bfa1be7512d034b5433719a39458932d39d4dea8c88b4a1d92d20afaab562ba0201b85a28da1a598
|
1
index/cstrike-addon-consistencypack/signature
Normal file
|
@ -0,0 +1 @@
|
|||
YgGKGznhUq+a3vrOlj9LF/uaANgS6q1cEky6lACUv2p7KkTQHkqYcw83Xr+5WN52WTat7TF2+ILSUj/KMUI/gXmEhnhKptECbj2WJY4pMLhZlgto4IC03tDzH2+I8QdQo0O//EHOcjGmCqW9a7zEBH/VFWPgBBn52hVRpkIgkMDKpnFWQYSOqK8YEvuW2Xg6D/CfT/GP1rGzg3P1UZ9PoqjA9EfXjbEsmFGQ3e3iAi3LjGaXaIxvgbtDFzq6EdG0StQei4TfLm+uaWy1hiqf7wuIAdu64P+7ax+kvAs351Sp7/8wFClz1B1Eu4RJYQPj0k/9fq9u3ue8B2aU/SQbR4D4N4Moxq6/lRpyB3o6vQH4N3UyWJY2MFXbgDSE/lV0v9hW+rJfs+Rp+7DD4F83mEMGWphhU66masMa4Kf437JfySKQFLdZMSTWr8DTC/1TNOSn0T6TFaN+alQ39BCSvkzqlc5eJIOe4CKXV8N9oX1n4IHrysxKl89apuBNVKO6
|
1
index/cstrike-addon-consistencypack/size
Normal file
|
@ -0,0 +1 @@
|
|||
7067057
|
1
index/cstrike-map-as_alpine/maplist
Normal file
|
@ -0,0 +1 @@
|
|||
"map=as_alpine"
|
1
index/cstrike-map-as_alpine/qhash
Normal file
|
@ -0,0 +1 @@
|
|||
0x1e0b2dd6
|
1
index/cstrike-map-as_alpine/sha512
Normal file
|
@ -0,0 +1 @@
|
|||
09a46b73cd16d1042a2878748ca5ec4c696828514e989140eda5ba7ac1b25e6d4a91bb2960a0bd7d260abad2f07a7a020879fad3c8f680b22eb8192f56c1cfe0
|
1
index/cstrike-map-as_alpine/signature
Normal file
|
@ -0,0 +1 @@
|
|||
C1GIgLdPbfoAzumLeJ98w1qH5gj5/3crtQGC9UBng4EbYNjcBdFvywFvYJkP6Fv06XHKFCLC2kLtElOoYkFb6gYJkPzBz+FZpirXRUl0RiO04z7WO5lea5fGtwdj43q4FWuVEOkw3L8Kx78bTw7H9OJRGTaKN2d1WS37hkBwhdqrZz7FEJlFcaDQtFneAldet6Zu0g/Weos8bk2dWoWmchNss6ooejAeNfVLD2FIepVv0qbxxsH85Kzcbfe5uR/PByhxLtu/vFbhIRveMHOPYKVxWlUa6OaKqUMS9+FekvPmxpw35FE5rlfl68sCEfx5ApRHEimX3KorJixanaH8hNACSSVKcQmF9Pu1QFQqc0dPY2XOnnBeqyy5owVzvcidwaRU4E6comJ3GNkoQWbLQGS29ZFYYORqr2Pp7zdhSMU58OYcr8J0xEqECsJu/vVj05b5Khh8DwpIxTBMjfYB+Djv1ZxPVc4fllf/2yHsmUL2pfH+Wg5OZ9ZF7W4eGHWZ
|
1
index/cstrike-map-as_alpine/size
Normal file
|
@ -0,0 +1 @@
|
|||
4128486
|
1
index/cstrike-map-as_alps/maplist
Normal file
|
@ -0,0 +1 @@
|
|||
"map=as_alps"
|
1
index/cstrike-map-as_alps/qhash
Normal file
|
@ -0,0 +1 @@
|
|||
0x698394a1
|
1
index/cstrike-map-as_alps/sha512
Normal file
|
@ -0,0 +1 @@
|
|||
0f96b2a47e6bd4c77efe8c076a2235d58d46a454359cc2541879a620f304abd59ca54304bbdf1c13f2e119095f5bea132c9c37e5746d9cc14dcfa8d948c5794a
|
1
index/cstrike-map-as_alps/signature
Normal file
|
@ -0,0 +1 @@
|
|||
Mi8RYScBxcN+hEsgPKfdDFTq3JEz6DNU/BogIfVZDduJ75qzcgcl9FMIIzmIVq3FWz50m9zRdSJF8V01Y8EO4oRCmyDsprmrjHbRTIVrLIZsEgkyHuzRlOgSjeQJgBqbv+CR+h9WIiQ3ehAm6AClvA7+gxGSL0kc+EbwJBtTqxUs92c9+5aAKxLkQkN9tdLE1N8op9VHJMjPX/M1rnGTwDj2zWL4Mhnjl8HgMmP4q8g/dwz5X+FPYRE5D0XmvbA6DFS7/LyYydTqDkRpI1YJSGKVaJlx5D9/xMzgKo8nssGcsdfVvjM+dEoVZ3WjEcmrHG1fBqHVDqBTcgr06DCG4eDQVQ5bs8TMh1IuQ3INJkI/xF60xzwYLSnfin7cwV6F96Wx2HVIOYwf8fhHDMWZ9yHqUNPdvNndrAZypJzU9g0+Dlv2ppWHsIIJmDVMRMtP+2sY4aiHnie+pkTpQ458yKNzYiV2sXDY3iH61HkrDSoVV1qVALNad9uwCw0RPcpN
|
1
index/cstrike-map-as_alps/size
Normal file
|
@ -0,0 +1 @@
|
|||
1453384
|
1
index/cstrike-map-as_bybybirdy/maplist
Normal file
|
@ -0,0 +1 @@
|
|||
"map=as_bybybirdy"
|
1
index/cstrike-map-as_bybybirdy/qhash
Normal file
|
@ -0,0 +1 @@
|
|||
0xc1cec734
|
1
index/cstrike-map-as_bybybirdy/sha512
Normal file
|
@ -0,0 +1 @@
|
|||
f9814a12bd578942c8a6bb1bfe02a236a3e912fdf0d5f692d620f622eab3e8b5d8719496b5624075e8597911e4d260a1213048bb1a6f70a4d69a28d934253e01
|
1
index/cstrike-map-as_bybybirdy/signature
Normal file
|
@ -0,0 +1 @@
|
|||
iiH7KTm3b4kAerdSbx2EDOmpviG7UzFP5GubEBYv0x3jpMLoJZuZNA6xYxGWtf6T3H9cQG73hHX4YfeqcDPQHfqAt074/2cwGXg8hIGlcalRodLHEq296A6OXhC1SArzdX91nqy6ubApiel7gvlqhdZDSSFlsde03+AC+CqE9unf5qi9nS12l49YaXeXw70tAZWMZwT3pS8j8AWnDDELbEansx5VE3P+mU+cKdT1YIzgbbFzyuQhm2lb2a4eWH2jV1cesFClzaVWvnD49CXt5er6QzjIkbKM5E9t2EWA5/2fKnMwfwmstuirK6tpBPu7uut+rW9lxjXAI9yBDnjK56xlC7LEVSZfsMglR3KGn35+2bgdRorQDxQQpGmPwg46UYm4dizcrPssIprF+84/7Q1dT+HUw5i0VaAhLUqSGs3UZKyf3z4af5iDEOfMUFqGtVcix9gpv7dcVlP5CJlZVgcMJ9GJGkua4dCoAxf/mh23WVYV+LYARO3pWFhUjm/j
|
1
index/cstrike-map-as_bybybirdy/size
Normal file
|
@ -0,0 +1 @@
|
|||
1764171
|