summaryrefslogtreecommitdiffhomepage
path: root/TODO
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2021-11-20 03:10:50 +0000
committerMichael Smith <mikesmiffy128@gmail.com>2021-11-20 03:18:08 +0000
commitda6f343032cb01597dc7866e66f091adf3243a62 (patch)
tree870f8cb8e82bb42202ab92bea03fc6ab35ada7ca /TODO
Initial public snapshot
With code from Bill. Thanks Bill!
Diffstat (limited to 'TODO')
-rw-r--r--TODO/autocomplete4
-rw-r--r--TODO/autojump5
-rw-r--r--TODO/compat3
-rw-r--r--TODO/featgen9
-rw-r--r--TODO/linux6
-rw-r--r--TODO/opt5
6 files changed, 32 insertions, 0 deletions
diff --git a/TODO/autocomplete b/TODO/autocomplete
new file mode 100644
index 0000000..cc3e867
--- /dev/null
+++ b/TODO/autocomplete
@@ -0,0 +1,4 @@
+Console command autocompletion
+====
+This isn't really something we need right now, but is worth documenting in case
+we deem it useful later.
diff --git a/TODO/autojump b/TODO/autojump
new file mode 100644
index 0000000..7b9c8b4
--- /dev/null
+++ b/TODO/autojump
@@ -0,0 +1,5 @@
+Add back autojump
+====
+I already wrote (and rewrote) the code long ago, but it's a secret until we
+further raise the verification standard for L4D2. Stupid, but less stupid than
+having no idea whether anyone's cheating, I guess.
diff --git a/TODO/compat b/TODO/compat
new file mode 100644
index 0000000..7f210e8
--- /dev/null
+++ b/TODO/compat
@@ -0,0 +1,3 @@
+Support more games and engine branches
+====
+Pretty self-explanatory.
diff --git a/TODO/featgen b/TODO/featgen
new file mode 100644
index 0000000..b71f32a
--- /dev/null
+++ b/TODO/featgen
@@ -0,0 +1,9 @@
+Feature setup code generation
+====
+Once the plugin has enough features across enough C files, setting up and
+tearing down everything will get kind of annoying. That's where some more code
+generation might be nice.
+
+There's a few vague ideas of how to do this but really it's pretty open-ended
+overall. In the meantime, we're just calling functions manually. Not a huge
+deal, really.
diff --git a/TODO/linux b/TODO/linux
new file mode 100644
index 0000000..d89baca
--- /dev/null
+++ b/TODO/linux
@@ -0,0 +1,6 @@
+Support Linux (again)
+====
+Early prototype code was written with both Linux and Windows in mind, but since
+then most of the development happens to have happened on Windows, which has left
+some gaps. We want to eventually add back support for Linux once all the
+important Windows stuff is out of the way.
diff --git a/TODO/opt b/TODO/opt
new file mode 100644
index 0000000..03add29
--- /dev/null
+++ b/TODO/opt
@@ -0,0 +1,5 @@
+Improve performance
+====
+Simple C code tends to go fast, but that doesn't mean we can't make a note of
+possibly-weird stuff that should maybe go more fast if we care enough to
+improve it.