[ogs-changes] dist/c++ ChangeLog,1.15,1.16 README,1.3,1.4 configure.in,1.11,1.12
Status: Alpha
Brought to you by:
elemings
|
From: <ele...@us...> - 2003-04-08 21:43:38
|
Update of /cvsroot/ogs/dist/c++ In directory sc8-pr-cvs1:/tmp/cvs-serv21226/c++ Modified Files: ChangeLog README configure.in Log Message: See C++ ChangeLog (Apr 5 and 8) for details. Index: ChangeLog =================================================================== RCS file: /cvsroot/ogs/dist/c++/ChangeLog,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ChangeLog 4 Apr 2003 20:22:39 -0000 1.15 --- ChangeLog 8 Apr 2003 21:43:04 -0000 1.16 *************** *** 1,3 **** --- 1,35 ---- + Tue Apr 8 19:59:15 UTC 2003 Eric Lemings <ele...@us...> + + * ogs/core/Modifiers.*: Added event type and modifier to event. + + * ogs/core/Ability.*: Added direct method. + + * test/Makefile.am, test/*.cpp: Renamed and updated a few test + drivers. + + Sat Apr 5 12:22:54 UTC 2003 Eric Lemings <ele...@us...> + + * README, configure.in: Require Boost C++ Library. + + * ogs/support/Event.*: Minor updates. + + * ogs/core/Ability.*: Removed current score member. Made static + getModifier() function private. Moved method definitions after + Ability class and replaced them with forward declarations. + + * ogs/core/Abilities.*: Using smart pointers to hold ability + scores. Added partial method for creating partial abilities. + + * ogs/core/Modifier.*: Minor updates (documentation, naming, etc.) + * ogs/core/Modifiers.*: Inlined constructor. Added modifiers + event class to store previous list value. + + * ogs/core/Creature.cpp, ogs/core/Character.cpp, + ogs/cclasses/Paladin.cpp: Changed pointer to shared pointer. + + * ogs/magic/Ability.h (getBonusSpells), ogs/magic/abilities/*.h: + Changed score parameter to modifier value. + Thu Apr 3 22:35:57 UTC 2003 Eric Lemings <ele...@us...> *************** *** 17,31 **** * ogs/core/Feat.h: Moved findFeat() template from source file. - * ogs/cclasses/*.h: Added constructors. Update docs. - * ogs/creatures/humanoids/*.h: Remove starting ages. - * ogs/feats/AllWeapons.*: Inlined factory methods. - * ogs/feats/ArmorProficiency.cpp: Optimizations. - * ogs/magic/Spell.h: Removed static descriptors member. - * ogs/test/CoreTest03.cpp: Updated for ability interface changes. --- 49,57 ---- Index: README =================================================================== RCS file: /cvsroot/ogs/dist/c++/README,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** README 4 Mar 2003 08:19:57 -0000 1.3 --- README 8 Apr 2003 21:43:04 -0000 1.4 *************** *** 7,11 **** it. ! * An ISO/ANSI C++ compiler (such as GCC 3.2 or higher) To generate the API Reference documentation, you will also need the --- 7,14 ---- it. ! * An ISO/ANSI C++ compiler. ! * The Boost C++ Library. ! ! The Boost C++ Library is available from wwww.boost.org. To generate the API Reference documentation, you will also need the *************** *** 14,18 **** * Doxygen (version 1.2.18 or higher) ! The API Reference documentation may be generated using the 'make doc' ! command after configuring the package. --- 17,22 ---- * Doxygen (version 1.2.18 or higher) ! Doxygen is available from www.doxygen.org. The API Reference ! documentation may be generated using the 'make doc' command after ! configuring the package. Index: configure.in =================================================================== RCS file: /cvsroot/ogs/dist/c++/configure.in,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** configure.in 4 Apr 2003 20:22:40 -0000 1.11 --- configure.in 8 Apr 2003 21:43:05 -0000 1.12 *************** *** 92,95 **** --- 92,100 ---- fi + dnl Checks for header files. + AC_CHECK_HEADER(boost/version.hpp,, AC_MSG_ERROR([ + The Boost C++ Library is required to build this software. + Download the library from the www.boost.org website.])) + dnl Checks for system services. ALL_LINGUAS="" |