NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Class layout (Score:1)
Regardless, though, I'm not sure why you'd write up this class structure anyway. When it comes to skills and/or attributes, all races and classes can attempt to pick_pocket, swim, cast_spell, run, sleep, whatever. They just all have different statistical chances of success when trying to pull off whatever task you had in mind.
Seems to me that when actually sitting down to write an app along these lines, you'd have a full default matrix of statistics for any given character, and the races/classes/exp, etc would simply tweak the default statistics up or down, depending. I'm not sure how OO would really serve a useful purpose for character behavior control. Magicians *can* pick_pocket, they'll just fail and immediately call for a cleric, as you point out. So, you need every method available to every character anyway.
$0.02,
j
Omaha Perl Mongers [pm.org]
Reply to This
Re:Class layout (Score:2)
With all due respect, I think you've inadvertently illustrated my point. Let's stick with Perl 5 and assume that delegation is the key to performing profession-specific behavior, but we won't use delegation yet. We'll assume four races, human, elf, dwarf and halfling. We'll also assume four professions, fighter, thief, magician and cleric. With the Character and Profession abstract base classes, we have a grand total of ten classes, each which encapsulates the basic attributes of what they're trying to m
Re:Class layout (Score:1)
2) If the class structure *is* needed for some reaso
Omaha Perl Mongers [pm.org]
Re:Class layout (Score:2)
Those are valid questions. The truth is, you never need objects to accomplish any programming problem. I chose objects for this illustration primarily because characters are really bundles of data with behaviors attached to them. This, of course, is one way objects are defined.
As for how mixins solve the problem more elegantly, you might want to read a virtually identical node on Perlmonks [perlmonks.org]. In light of the responses, I back off a bit from asserting the utility of mixins once it became clear that they'