Skip to content

Instantly share code, notes, and snippets.

@pfirsich
pfirsich / entry_mirage_A_ramp.cfg
Created August 29, 2015 13:17
Helper script/config to make entry fragging practice configs (placing bots in common spots to practice clearing a site). Included example output config for de_mirage A site from ramp.
mp_respawn_on_death_ct 1
bot_stop 1
say Please execute bot_kick before executing this file. 10 bots will be placed
bot_add_ct
bot_add_ct
bot_add_ct
bot_add_ct
bot_add_ct
@pfirsich
pfirsich / tweakables_v2.lua
Created February 22, 2015 20:25
Second incarnation of the tweakable-system in SudoHack
local tweakables = {}
function tweak(defaultVal, name)
if not tweakables[name] then tweakables[name] = defaultVal end
return tweakables[name]
end
local fileList = {}
function buildFileList(dir, includeDirs)
local lfs = love.filesystem
@pfirsich
pfirsich / tweakLoader.lua
Created February 22, 2015 20:26
Package loader for tweakables without "name"-argument, discarded for SudoHack
do
local compiler = function(filename, codeString)
local counter = 0
filename = filename:gsub("\\", "/")
codeString = codeString:gsub("func%(",
function()
counter = counter + 1
return 'func("' .. filename .. "_" .. tostring(counter) .. '"'
end)
print(codeString)
@pfirsich
pfirsich / GitHub Atom shortcuts
Last active August 29, 2015 14:16
A reminder of the Atom shortcuts I think are the most useful (and I will print out and put beside my computer)
Important:
ctrl+shift+p - everything
ctrl+t - fuzzy file opener (alternative: ctlr+b - search open files)
ctrl+, - settings
ctrl+f - search
ctrl+shift+f - search entire project
esc - close search pane
ctrl+r - search symbols in current file
@pfirsich
pfirsich / sudohack_changelog.md
Last active August 29, 2015 14:16
Changelog for SudoHack (see http://theshoemaker.de/) (primarily for me, but also for anyone interested in the game). Most of the older messages are not as descriptive and may be strange.

SudoHack Changelog

Unreleased

Added

  • Bullets make a sound when they hit a wall
  • Image gets color shifted, desaturated and noisy if player has too few bits
  • Added doors
  • Player names (non-editable yet)
  • "Tutorial rooms" - very short, stripped down rooms, which aim to make certain game play concepts/mechanics clear
  • A way to choose input type at the start of the program
  • A lot more maps
@pfirsich
pfirsich / MERA.py
Created May 5, 2015 15:52
"Simulation"/"exploration" script for determining prefactors for calculations done by a friend
import re
import sys
from collections import defaultdict
class Node:
def __init__(self, string, parent = None):
self.string = string
self.parent = parent
self.children = []
@pfirsich
pfirsich / practice.cfg
Last active October 22, 2015 22:32
CS:GO practice config
sv_cheats 1
bot_kick
bot_stop 1
mp_autokick 0
mp_freezetime 0
mp_roundtime 60
mp_roundtime_defuse 60
mp_roundtime_hostage 60
mp_limitteams 0
@pfirsich
pfirsich / spacewalk.lua
Created November 5, 2015 23:02
Simple example of an entity type description file for Screwdriver (shown in my blog). The beginning for a hypothetical full remake of Spacewalk.
entityTypes["levelGeometry"] = {
label = "Level geometry",
components = {
{
id = "core",
componentType = "Core", -- every entity type has to have a core component
},
{
id = "transforms",
componentType = "Transforms",
@pfirsich
pfirsich / Signal.hpp
Created August 22, 2016 10:23
Signals/Slots
#ifndef __SIGNAL_HPP_INCLUDED__
#define __SIGNAL_HPP_INCLUDED__
#include <cstdio>
#include <vector>
#include <functional>
// eraz on ##c++@freenode helped me with this, by pointing me to std::function!
// Here we use std::function like template syntax, by defining a generic Signal and
import os
import sys
cmd = 'ffmpeg -r 60 -i "{dirName}/%d.png" -y -c:v libx264 -vf "format=yuv420p" -r 60 "{dirName}.mp4"'
for dirName in os.listdir("."):
if os.path.isdir(dirName) and (len(sys.argv) <= 1 or dirName in sys.argv[1:]):
os.system(cmd.format(dirName=dirName))