[370] in Coldmud discussion meeting

root meeting help first previous next next in chain last in chain last

Changes (0.10-4)

daemon@ATHENA.MIT.EDU (Sun Jul 10 23:26:04 1994 )

From: BRANDON@cc.usu.edu
Date: Sun, 10 Jul 1994 21:21:04 -0600 (MDT)
To: coldstuff@MIT.EDU
X-Vms-To: COLDSTUFF

Ok, I am getting around to making the changes I threatened earlier,
here is what I can remember (I didn't save them in a file I can find,
unfortunately):

set_name()    => set_objname()
del_name()    => del_objname()
get_name()    => get_objnum()
connect()     => open_connection()
disconnect()  => close_connection()
bind()        => bind_port()
unbind()      => unbind_port()
assign_conn() => reassign_connection()
run_script()  => system_execute()
textdump name will be arg[0] + ".dump"  (or a better prefix if it is suggested
                                         soon enough)

Skimming through opcodes.c I'm wondering about a few more:

set_heartbeat_freq() => set_heartbeat()     (this is completely aesthetic)
db_top => max_objnum()                      (ditto)
has_ancestor() => remove  (we can just do 'if obj in (.ancestors())', although
                           it isn't as fast).
dict_add_elem()
dict_del_elem() => remove (since they are disappearing anyway)

I cannot remember anything else immediately.  I may also hunt down 0.11 and
hack in the traceback()/error_*() change.

-Brandon-