To help you organize this project (or feel better about it), read these Class Responsibility Collaboration(crc) links, and writeup a version of these cards for your project (you can use asciio (if you got Gtk2) when you've got a version you want to share)


html version (no overlapping or closeness)

View
  • Render the Model
  • Transform coordinates
  • Controller
  • Model
Controller
  • Interpret user input
  • Distribute control
  • View
  • Model
Model
  • Maintain problem related info
  • Broadcast change notification

YAML (HoHoA), (no overlapping or closeness)

--- View: Responsibilities: - (what the class does) - Render the Model - Transform coordinates - - - Collaborations: - (related objects) - Controller - Model - - - --- Controller: Responsibilities: - (what the class does) - Interpret user input - Distribute control - - - Collaborations: - (related objects) - View - Model - - - --- Model: Responsibilities: - (what the class does) - Maintain problem related info - Broadcast change notification - Collaborations: - (related objects) - - -

App::asciio text diagram, both overlapping and closeness

.----------------------------------------. | View | .-------------------------.--------------. | - Render the Model | - Controller | | - Transform coordinates | - Model | | | | | | .--------------------------------------- +-. | | | Controller + | '-------------------------'--.-------------------------.------------- +-. | - Interpret user input. | - View + | | - Distribute control | - Model + | | | + | | | + | | | + | '-------------------------'------------- +-' .----------------------------------------. | Model | .-------------------------.--------------. | - Maintain problem | | | realted info. | | | - Broadcast change | | | notification. | | | | | '-------------------------'--------------' Note that the cards are placed such that View and Controller are overlapping (implying close collaboration) and placed above Model (implying supervision.)

In reply to Re: Organising and localising generated POD (Class Responsibility Collaboration(crc)) by Anonymous Monk
in thread Organising and localising generated POD by duncs

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.