I have a program which processes data and produces
outputs. I have concepts like Track and Track_Group,
and templates for converting them into
the chain configurations used by a sound
engine to mix, route and process audio signals.
Right now all my code (except the GUI widgets part)
is procedural, using hashes and arrays to store data. I am implementing two operating modes:
* A Tk GUI event loop
* A command-line parse-and-execute loop
My code, already close to 4k lines, is sprouting
such conditionals as:
&refresh_track_display if $gui;
At the moment I have only about ten of these
statements. Should I think about trying to eliminate them? What are my alternatives?
This is a concern as I am considering an incremental move over to a OO style and higher levels of abstraction. How might OO design or some other abstraction help me support this dual-interface ability?
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.