[project @ 2005-06-01 11:12:41 by unknown_lamer]
[clinton/bobotpp.git] / TODO
1 Done:
2 * DCC CHAT min user level
3 * Lots of hooks related stuff that I never wrote down
4 * Abstract DCC support so that DCC FILE may be easily implemented
5 * Wrote config database class
6 * Compile without warnings
7 * bot:protection/[none|no-ban|no-kick|no-deop] constants
8 * bot:aop/[no|yes] constants
9
10 2.2:
11 * Finish Texinfo manual
12 * Utils::valid_nickname_p should have a configurable max nick length
13 (now that most networks allow for longer than nine character
14 nicks). This is dependant upon the new configuration system
15 * Finish adding commands to Scheme for sending messages
16 (e.g. bot:send-CTCP to send a CTCP message)
17 * Add util functions for doing stuff like quoting CTCP messages
18 * Finish adding hooks/send hooks
19 * Add DCC_CHAT_END hook for Scheme
20
21 2.4:
22 * Use configuration database class
23 * Extend AOP to support +v (0 = no op, 1 = +o, 2 = +v)
24 * Add !setcommandlevel (move ScriptCommands implementation to Commands
25 and add a UserCommands)
26 * Improve the help system
27
28 2.4/3.0 (2.4 iff backwards compatibility is maintained, 3.0 otherwise):
29 General:
30 * Eliminate String class
31 * Finish converting UserCommands to use Commands
32 * Audit code and see what data in classes should be made private and
33 have getters/setters added (e.g. logFileName in Bot--if this is
34 changed the log file doesn't change after the Bot is started).
35 * DCC FILE support (sending and recieving)
36 * Possibly convert BotConfig to use boost::any instead of std::string
37 as t_value
38 * Remove StrinkTokenizer, replace with boost::tokenizer
39 * Remove string procedures from Utils, replace with boost::string_algo
40 * Use boost::timer for internal timers
41
42 Scripting:
43 * Add commands to delete a hook
44 - return an iterator to the Hook
45 - this would require a new SMOB to be created
46 - Scheme could pass Hook objects around and do nifty things
47 - At least allow all hooks of a type with the same name field to be
48 deleted at once (also all hooks with the same name). Also allow
49 deleting based on the regexp
50
51 Networking:
52 * Add a networked interface to guile repl
53 - This can (should) be done as a script, but requires non-coop threads
54 support to be done easily (and thus requires Guile 1.8)
55 - Admins only
56 - Telnet
57 - Store authorized users and passwords in bot.telnet file
58 - Bot master can add new telnet users
59 - MUST HAVE PASSWORD
60 * See if Socket::readLine could be sped up (profile it first to see if
61 it even matters)
62
63 Definitely 3.0:
64 * Remove gh_* when Guile 1.8 is released
65 * Make it possible to use Scheme functions in the Parser itself
66 * Replace large select-loop in Bot::waitForInput with multithreaded
67 - To clarify: There will be one thread for DCCs and another thread
68 for the current irc server connection, each with its own select
69 loop. There may also be a thread for the network repls if I
70 implement those.
71 * New config values in config db should be added before old values
72 (this is faster but breaks the way server lists work in 2.x)