summaryrefslogtreecommitdiff
path: root/src/alias.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix some miscellaneous stupid bugs and jankGravatar Michael Smith 2023-04-081-2/+2
| | | | Note: fixes.c was changed this year, so correct the copyright year too.
* Fix some lingering idiocyGravatar Michael Smith 2022-09-131-3/+3
| | | | | | Thanks Aciidz for pointing out the strings with no newline in them, and thanks Clang for warning me I wasn't using a function for ages while I was too lazy to delete it.
* Move towards C23, improve events and vcall macrosGravatar Michael Smith 2022-09-131-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | Another big one. Here's a list of things: - Since the upcoming C23 standardises typeof(), use it as an extension for the time being in order to allow passing arbitrary types as macro/codegen parameters. It wouldn't have been a big leap to do this even without standardisation since it's apparently an easy extension to implement - and also, to be honest, this project is essentially glued to Clang anyway so who cares. - Likewise, bool, true and false are becoming pre-defined, so pre-pre-define them now in order to get the benefit of not having to remember one header everywhere. - Really ungodly/amazing vcall macro stuff now allows us to call C++ virtual functions like regular C functions. It's pretty cool! - Events can now take arbitrary parameters and come in two types: regular events and predicates. All this makes the base code even uglier but makes the feature implementation nicer. In other words, it places more of the cognitive burden on myself and less on other people who might want to contribute. This is a good tradeoff, because I'm a genius.
* Add magical feature codegen system, at long lastGravatar Michael Smith 2022-08-101-20/+24
|
* Add keybind lookup codeGravatar Michael Smith 2022-07-231-10/+1
| | | | Also centralise NEXT_INSN macro, into its own header at least for now.
* Document some Portal 2 breakage that needs fixedGravatar Michael Smith 2022-07-231-0/+4
|
* Add alias management plus input filtering skeletonGravatar Michael Smith 2022-07-231-0/+112
Some of the alias stuff was kind of stolen from earlier figuring-out Bill did. More Bill code is also on the way. :^)