[ogs-changes] dist/c++ ChangeLog,1.17,1.18 TODO,1.10,1.11 configure.in,1.13,1.14
Status: Alpha
Brought to you by:
elemings
|
From: <ele...@us...> - 2003-04-15 16:59:03
|
Update of /cvsroot/ogs/dist/c++
In directory sc8-pr-cvs1:/tmp/cvs-serv20206/c++
Modified Files:
ChangeLog TODO configure.in
Log Message:
See C++ ChangeLog (Apr 15) for details.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/ogs/dist/c++/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** ChangeLog 13 Apr 2003 05:40:27 -0000 1.17
--- ChangeLog 15 Apr 2003 16:58:28 -0000 1.18
***************
*** 1,3 ****
--- 1,51 ----
+ Tue Apr 15 03:46:35 UTC 2003 Eric Lemings <ele...@us...>
+
+ * configure.in, ogs/creatures/Makefile.am, ogs/Creatures.h,
+ ogs/creatures/Undeads.h, ogs/creatures/undeads/*: Add package
+ for undead creatures.
+
+ * doc/Doxyfile.in: Updated to Doxygen 1.3.
+
+ * ogs/Skills.h: Removed old headers. Added new ones.
+
+ * ogs/core/Abilities.h: Added Value type.
+
+ * ogs/core/Creature.*: Use smart pointers only when needed.
+ Fixed bug for missing abilities. Fixed addSkill() and
+ addFeat() functions. Add key ability in addSkill() function.
+
+ * ogs/core/Entity.*: Use smart pointers only when needed.
+
+ * ogs/core/Feat.*: Changed static attributes from pure virtual
+ functions to data members in base class and static constants
+ in derived classes.
+
+ * ogs/core/Feature.h: Derived from Attachable interface.
+
+ * ogs/core/Saves.h: Removed the rollSave () function.
+
+ * ogs/core/Skill.*: Added default cclass points parameter for
+ initializing skill rank modifier.
+
+ * ogs/cclasses/Paladin.*: Updated for changes to Creature interface.
+
+ * ogs/classes/*.h: Minor doc updates.
+
+ * ogs/feats/*, ogs/magic/MetamagicFeat.*, ogs/magic/feats/*:
+ Updates for changes to Feat interface. Made similar changes
+ in base feat classes. Fixed recursive attachObject() bug.
+ Temporarily removed BonusFeat from dist.
+
+ * ogs/magic/SpellList.*: Move templates from source to header.
+
+ * ogs/skills/*: Use smart pointers only when needed. Fixed
+ key ability of Hide skill. Updates for added parameter.
+
+ * test/SupportTest.cpp: Added some copy semantics tests.
+
+ * test/Makefile.am, test/CreatureTest.cpp: Added test for
+ creatures (using humans and wraiths as test subjects).
+
Sun Apr 13 04:24:59 UTC 2003 Eric Lemings <ele...@us...>
Index: TODO
===================================================================
RCS file: /cvsroot/ogs/dist/c++/TODO,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** TODO 13 Apr 2003 05:40:27 -0000 1.10
--- TODO 15 Apr 2003 16:58:28 -0000 1.11
***************
*** 12,21 ****
items in the section that follows.
! * Make Size class a nested class of Entity?
! * Separate ability methods into their own Methods.h header?
* Put version information in top-level ogs namespace.
! * Add more test drivers.
Future Minor Releases
--- 12,21 ----
items in the section that follows.
! * Add more test drivers, namely saves, defense, skills, and feats.
* Put version information in top-level ogs namespace.
! * Make Size class a nested class of Entity?
! * Separate ability methods into their own Methods.h header?
Future Minor Releases
***************
*** 27,30 ****
--- 27,33 ----
* Implement more cclasses, more creatures, more items, more skills,
more feats, and more spells!
+
+ * Add more test drivers, namely creatures, cclasses, characters, items,
+ and body parts.
* Add interface to Defense class for determining defense when
Index: configure.in
===================================================================
RCS file: /cvsroot/ogs/dist/c++/configure.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** configure.in 13 Apr 2003 05:40:27 -0000 1.13
--- configure.in 15 Apr 2003 16:58:28 -0000 1.14
***************
*** 119,122 ****
--- 119,123 ----
ogs/creatures/Makefile
ogs/creatures/humanoids/Makefile
+ ogs/creatures/undeads/Makefile
ogs/feats/Makefile
ogs/items/Makefile
|