summaryrefslogtreecommitdiffhomepage
path: root/gamedata/gamelib.txt
AgeCommit message (Collapse)Author
2024-08-26Fix Teleport gamedata for sst_l4d_testwarp on L4D2Michael Smith
Of course, something was bound to get screwed up by all those changes. And of course, I was bound not to test stuff well enough in the rush to make a useful update. Argh!
2024-08-23Rewrite the gamedata and entprops systems entirelyMichael Smith
This removes the horrible janky old KeyValues parser and replaces it with a couple of trivial ad-hoc text parsers. In doing so, make the format of the actual gamedata files more human-friendly too. We also gain support for nested SendTables in mkentprops, which are required to get at various things like player velocity. And, the actual string matching is made more efficient (or, at least, more scalable) by way of a cool radix tree thing which generates a bunch of switch cases on distinct characters.