This file contains hidden or 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
#pragma endian little | |
#pragma pattern_limit 4294967295 | |
import std.sys; | |
import std.string; | |
import std.mem; | |
import std.core; | |
// TODO: Support floatcoords via global set by protocol detection, update Coord, Angle etc | |
struct Coord { |
This file contains hidden or 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
# ISC License | |
# | |
# Copyright 2025 Daniel Svensson, dsvensson@gmail.com | |
# | |
# Permission to use, copy, modify, and/or distribute this | |
# software for any purpose with or without fee is hereby | |
# granted, provided that the above copyright notice and | |
# this permission notice appear in all copies. | |
# | |
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS |
This file contains hidden or 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
sent1: | |
02ffff | |
recv1: | |
hex: 03ffff7b22736470223a22763d305c725c6e6f3d2d2038383538343734363034353436393536333931203220494e20495034203132372e302e302e315c725c6e733d2d5c725c6e743d3020305c725c6e613d67726f75703a42554e444c4520305c725c6e613d6578746d61702d616c6c6f772d6d697865645c725c6e613d6d7369642d73656d616e7469633a20574d535c725c6e6d3d6170706c69636174696f6e2039205544502f44544c532f53435450207765627274632d646174616368616e6e656c5c725c6e633d494e2049503420302e302e302e305c725c6e613d6963652d75667261673a6c7273715c725c6e613d6963652d7077643a30746552356e7642303364733670736666745762616374535c725c6e613d6963652d6f7074696f6e733a747269636b6c655c725c6e613d66696e6765727072696e743a7368612d3235362038393a37363a43313a46373a34363a36433a44443a30353a30363a43463a37443a36333a42383a45373a43383a44393a37373a41453a36413a37363a42323a44423a34333a33433a39363a42393a35333a46393a33453a45373a35393a44325c725c6e613d73657475703a616374706173735c725c6e613d6d69643a305c725c6e613d736374702d706f72743a353030305c725c6e613d6d61782d6d6573736167652d73697a653a32363231343 |
This file contains hidden or 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
crosshairs/ | |
crosshairs/crossdeurk.png | |
gfx.wad | |
gfx/ | |
gfx/anum_0.png | |
gfx/anum_1.png | |
gfx/anum_2.png | |
gfx/anum_3.png | |
gfx/anum_4.png | |
gfx/anum_5.png |
This file contains hidden or 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
#include <emscripten/bind.h> | |
#include <emscripten/val.h> | |
#include "quakedef.h" | |
#include "fragstats.h" | |
using namespace emscripten; | |
/** | |
* // Sample use of the browser API. | |
* // |
This file contains hidden or 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
---- qbsp / ericw-tools 2.0.0-alpha3-37-gde0f66c1 ---- | |
--- Options Summary --- | |
"threads" was set to "32" (from command line) | |
"nocolor" was set to "1" (from command line) | |
"wadpath" was set to "C:/QuakeDev" (from command line) | |
running with 32 thread(s) | |
running with lower priority | |
Input file: C:\QuakeDev\projects\build\outpost96-compile.map |
This file contains hidden or 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
{ | |
"version": 6, | |
"cmakeMinimumRequired": { | |
"major": 3, | |
"minor": 9, | |
"patch": 0 | |
}, | |
"configurePresets": [ | |
{ | |
"name": "default", |
This file contains hidden or 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
qbool ReSearchInitEx(const char *wildcard, qbool case_sensitive) | |
{ | |
int error; | |
pcre2_code *re; | |
PCRE2_SIZE error_offset; | |
if (wildcard_level == 4) { | |
Com_Printf("Error: Regexp commands nested too deep\n"); | |
return false; | |
} |
This file contains hidden or 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
COMPLETE LISTING OF CTFBot+ IMPULSES | |
1 Axe/Grapple | |
2 Shotgun | |
3 Super Shotgun | |
4 Nailgun | |
5 Super Nailgun | |
6 Grenade Launcher | |
7 Rocket Launcher | |
8 Lightning Gun |
This file contains hidden or 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
diff --git a/predict.py b/predict.py | |
index 4b9df0a..ecc9b74 100644 | |
--- a/predict.py | |
+++ b/predict.py | |
@@ -14,6 +14,9 @@ from image_to_image import ( | |
preprocess_mask, | |
) | |
+def dummy(images, **kwargs): | |
+ return images, False |
NewerOlder