For coding standards covering such things as prefixes and suffixes I'll need to dig out some industry standards and tweak them to this project and for the languages used:
For this sort of thing:
e.g. Prefixes:
m = Module level
g = Global/Public
Yes I know lots of code will have to be re-factored but this will be necessary to ensure all developers can read each others code.
Also commenting of code is compulsory, as in many cases it will be quicker to re-right the code rather than attempting to decipher the authors algorithms.
G_ | A Variable with Global (or Shared) Scope. |
L_ | A Variable with Local Scope. |
P_ | A Parameter for a Procedure (used in the Procedure's definition). |
F | Used in conjunction with any of the above, a Boolean or Flag Variable that only has values of True or False. E.g. PF_ would denote a Boolean Parameter. |
C | Used in conjunction with any of the above, a Constant. AMOS Basic has no constant declaration statement as used in some other dialects of Basic. However it is sometimes useful to use a Variable to do the job of a Constant. E.g. GC_MAX_LENGTH=30 might be used so that all code using that value (30) uses the Variable Name GC_MAX_LENGTH instead. The code is easier to read and, if the value of 30 is changed later in development, it only needs to be changed in one place. |
Having just written (still am) a long, long AMOS Basic program, the above rules have made it a lot easier to keep track of what's being used and where. The point about no variable declaration and checking is very important. Without careful docs and partitioning, the whole thing can become a nightmare of spaghetti code.
I'll have some software ready for release this side of Xmas. So see what you think of the sources.
erm... unless I missed it, it'll be the other side of Xmas now...
How many lines of code? I have written a few that have 3000 lines of code.
Quote from: MadAnguserm... unless I missed it, it'll be the other side of Xmas now...
Had a lousy December, a bl**dy good Xmas and then stuffed my back big-time for New Year. Only just able to again sit at a PC for more than 5 minutes.