wyrmtools-commits Mailing List for Wyrm Tools (Page 153)
A suite of tools for any RPG system
Status: Pre-Alpha
Brought to you by:
wyrmtools
You can subscribe to this list here.
| 2006 |
Jan
(23) |
Feb
(106) |
Mar
(180) |
Apr
(143) |
May
(138) |
Jun
(116) |
Jul
(67) |
Aug
(136) |
Sep
(123) |
Oct
(233) |
Nov
(713) |
Dec
(90) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(789) |
Feb
(134) |
Mar
(173) |
Apr
(120) |
May
(101) |
Jun
(131) |
Jul
(76) |
Aug
(25) |
Sep
(43) |
Oct
(16) |
Nov
(12) |
Dec
(40) |
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(68) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
| 2017 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2018 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Wyrm T. <wyr...@us...> - 2006-01-28 04:25:20
|
Update of /cvsroot/wyrmtools/projects/systems/org.wyrmtools.systems.d20.core/src/org/wyrmtools/systems/d20/core/platform In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16534/src/org/wyrmtools/systems/d20/core/platform Added Files: IFeatPointProvider.java Log Message: Initial checkin. --- NEW FILE: IFeatPointProvider.java --- /* * IFeatPointProvider.java * Copyright (C) 2004-2006 by WyrmTools.org <wyrmtools[at]yahoo[dot]com>. * All rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA * * Created on Jan 21, 2006 at 9:47:31 PM. * * Cur Version: $Revision: 1.1 $ * Last Editor: $Author: wyrmtools $ * Last Edited: $Date: 2006/01/28 04:25:01 $ */ package org.wyrmtools.systems.d20.core.platform; import org.wyrmtools.systems.d20.core.model.ICharacterLevel; // TODO: I think this interface needs to not only provide the "quantity" of // feat points, but also the feat type to which they apply. For example, we // need to support fighter bonus feats which allow the user only to select // from feats of the "Fighter" type. // // This means the UI on the Feats page will have to change to reflect the // NUMBER AND TYPE of feat points remaining, rather than the number alone. // // We also have to consider supporting the provision of SPECIFIC feats // rather than just arbitrary points. How will that UI work? Do we force // the user to choose rather than allowing them to use the generic Feats page? /** * The interface that represents a provider of feats points. * * @author Rusty Shackleford <wyrmtools@yahoo.com> * @version $Revision: 1.1 $ */ public interface IFeatPointProvider { // ====================================================================== // Methods // ====================================================================== /** * Gets the number of feat points contributed by this provider at the * specified level. * * @param level * The character level context. * * @return The number of feat points contributed by this provider at the * specified level. * * @throws java.lang.NullPointerException * If <code>level</code> is <code>null</code>. */ public int getFeatPoints( ICharacterLevel level ); } |
|
From: Wyrm T. <wyr...@us...> - 2006-01-28 04:25:19
|
Update of /cvsroot/wyrmtools/projects/systems/org.wyrmtools.systems.d20.core/src/org/wyrmtools/systems/d20/core/model In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16534/src/org/wyrmtools/systems/d20/core/model Added Files: ICharacterFeat.java Log Message: Initial checkin. --- NEW FILE: ICharacterFeat.java --- /* * ICharacterFeat.java * Copyright (C) 2004-2006 by WyrmTools.org <wyrmtools[at]yahoo[dot]com>. * All rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA * * Created on Jan 23, 2006 at 10:50:49 PM. * * Cur Version: $Revision: 1.1 $ * Last Editor: $Author: wyrmtools $ * Last Edited: $Date: 2006/01/28 04:25:01 $ */ package org.wyrmtools.systems.d20.core.model; import org.wyrmtools.core.util.Uuid; /** * This interface represents an instance of a feat acquired by a character. * * @author Rusty Shackleford <wyrmtools@yahoo.com> * @version $Revision: 1.1 $ */ public interface ICharacterFeat { // ====================================================================== // Methods // ====================================================================== /** * Gets the UUID of the feat. * * @return The UUID of the feat. */ public Uuid getFeatId(); /** * Gets the total number of feat points allotted to the feat. * * @return The total number of feat points allotted to the feat. */ public int getFeatPoints(); } |
|
From: Wyrm T. <wyr...@us...> - 2006-01-27 05:54:00
|
Update of /cvsroot/wyrmtools/projects/platform/org.wyrmtools.core/src/org/wyrmtools/core/model/event In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19740/src/org/wyrmtools/core/model/event Modified Files: ElementEvent.java Log Message: Added final modifier to method parameters. Index: ElementEvent.java =================================================================== RCS file: /cvsroot/wyrmtools/projects/platform/org.wyrmtools.core/src/org/wyrmtools/core/model/event/ElementEvent.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ElementEvent.java 19 Jul 2005 03:30:04 -0000 1.5 --- ElementEvent.java 27 Jan 2006 05:53:52 -0000 1.6 *************** *** 1,5 **** /* * ElementEvent.java ! * Copyright (C) 2004-2005 by WyrmTools.org <wyrmtools[at]yahoo[dot]com>. * All rights reserved. * --- 1,5 ---- /* * ElementEvent.java ! * Copyright (C) 2004-2006 by WyrmTools.org <wyrmtools[at]yahoo[dot]com>. * All rights reserved. * *************** *** 126,132 **** * of events. */ ! public ElementEvent( IElement source, int id, IElement element ) { ! // Invoke base class ctor super( source, id ); --- 126,133 ---- * of events. */ ! public ElementEvent( final IElement source, final int id, ! final IElement element ) { ! // Invoke superclass constructor super( source, id ); |
|
From: Wyrm T. <wyr...@us...> - 2006-01-27 05:38:27
|
Update of /cvsroot/wyrmtools/projects/platform/org.wyrmtools.core/src/org/wyrmtools/core/model/event In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16053/src/org/wyrmtools/core/model/event Modified Files: ModelEvent.java Log Message: Added final modifier to method parameters. Index: ModelEvent.java =================================================================== RCS file: /cvsroot/wyrmtools/projects/platform/org.wyrmtools.core/src/org/wyrmtools/core/model/event/ModelEvent.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ModelEvent.java 19 Jul 2005 03:30:04 -0000 1.4 --- ModelEvent.java 27 Jan 2006 05:38:19 -0000 1.5 *************** *** 1,5 **** /* * ModelEvent.java ! * Copyright (C) 2004-2005 by WyrmTools.org <wyrmtools[at]yahoo[dot]com>. * All rights reserved. * --- 1,5 ---- /* * ModelEvent.java ! * Copyright (C) 2004-2006 by WyrmTools.org <wyrmtools[at]yahoo[dot]com>. * All rights reserved. * *************** *** 65,71 **** * The event identifier. */ ! public ModelEvent( IElement source, int id ) { ! // Invoke base class ctor super( source ); --- 65,71 ---- * The event identifier. */ ! public ModelEvent( final IElement source, final int id ) { ! // Invoke superclass constructor super( source ); |