This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*LDFLAGS=-rdynamic*/ | |
#include <execinfo.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
/* Obtain a backtrace and print it to stdout. */ | |
void | |
print_trace (void) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
export WINEBIN=wine | |
export WINEDEBUG=-all | |
export WINEPREFIX=~/wineprefixes/sourcesdk/ | |
export SDK2013DIR=/seagate/steamcmd/sdk2013mp | |
export VPROJECT=$SDK2013DIR/hl2/ | |
IMPORTDIR=$(pwd) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
export WINEBIN=wine | |
export WINEDEBUG=-all | |
export WINEPREFIX=~/wineprefixes/sourcesdk/ | |
export BASEDIR="/seagate/SteamLibrary/steamapps/common/SourceFilmmaker/game/" | |
export VPROJECT=$BASEDIR/usermod/ | |
IMPORTDIR=$(pwd) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export WINEBIN=wine | |
export WINEDEBUG=-all | |
export WINEPREFIX=~/wineprefixes/sourcesdk/ | |
export GAMEDIR=~/.steam/steam/steamapps/common/insurgency2/ | |
export VPROJECT=$GAMEDIR/insurgency/ | |
$WINEBIN $GAMEDIR/bin/SDKLauncher.exe $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export WINEBIN=/opt/wine-tkg-git-source-frustrating-4.11.r0.g07afb240a8/bin/wine | |
export WINEDEBUG=-all | |
export WINEPREFIX=~/wineprefixes/sourcesdk/ | |
export GAMEDIR=/seagate/SteamLibrary/steamapps/common/SourceFilmmaker/game/ | |
export STUDIOMDL=$GAMEDIR/bin/studiomdl.exe | |
export VPROJECT=$GAMEDIR/usermod/ | |
$WINEBIN $STUDIOMDL $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ffmpeg -y -i $1 -i $2 -filter_complex alphamerge $3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ffmpeg -y -i $1_bump.dds $1_bump.png | |
gmic $1_bump.png f "[A,B,G,R]" o $1_normal.png | |
#multiply red channel's each pixels by 0.707 | |
gmic $1_normal.png f "[R*0.707,G,B,A]" o $1_normal.png | |
#Value invert output’s green channel | |
gmic $1_normal.png f "[R,255-G,B,A]" o $1_normal.png | |
#Curve level output’s blue channel with input 0 and output 128 (basically, need to make pixels values scaled to 128-255 range) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in *.smd; do sed -i 's/\" 0.00/\" -1/g' $i; sed -i 's/-../0.00/g' $i; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Load( "./christie_head_rel.dmx", "relative" ); -- our dmx model with hwm flexes | |
print("We have loaded that crap. What we got for now:"); | |
ListDeltas( ); | |
CreateDeltasFromPresets( "./game_presets.pre", true ); -- 'true' purges all HWM flexes. | |
ImportComboRules( "./mechanic_model_merged.dmx", true, true ); -- any dmx that contains l4d2 facs controllers. First 'true' replaces the current rules with those from the file. Second 'true' purges any delta states which are no longer referred to by any combination rule or control. | |
ResetState( ); | |
print( "And what we got now:" ); | |
ListDeltas( ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
_PKGNAME_OVERRIDE="source-frustrating" | |
_LOCAL_OPTIMIZED="true" | |
_GCC_FLAGS="-march=native -pipe -O2 -ftree-vectorize" | |
_LD_FLAGS="-march=native -pipe -O2 -ftree-vectorize" | |
_protonify="false" | |
_use_faudio="false" | |
_FS_bypass_compositor="false" |