|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Re: Programming Organization
Quote:
|
|
#2
|
|||||
|
|||||
|
Re: Programming Organization
Everything said so far is good. Here is my list of the important stuff:
Use a standard formatting style. This includes how to position braces ({ and }), spacing between arguments, amount of indent (2 spaces, 4 spaces, or a tab), line overflow, etc. I believe the de facto standard of C is like this: Code:
// You should use more descriptive names for everything
void AFunctionName(int an_argument, int other_argument)
{
int retval = DoSomething(other_argument, an_argument + 1);
int n = 0;
for (int i = 0; i < retval; i++)
{
// So, do something here...
n = an_argument * i;
}
}
Document. I find doxygen works well for API-type documentation (Which functions do what, and what arguments they take). For logic documentation, nothing beats good ol' comments. Create functions for conceptual reasons. A function should perform a specific task, and that task should be fairly clear from the name. (And having clearly named functions with unambiguous purposes also helps with self-documenting code, if you believe in such a thing.) I agree entirely with teaching basic OOP concepts, since that includes ideas of abstraction and encapsulation (not to mention a few other things), concepts I consider important to writing clear code that works. Code reuse. Last year, I used a system much like the autonomous scripting to handle motor control (control loops). This was a great boon for me, because when part of the robot didn't work, I could say, "It's not the code. The same code works on the other joint." (This is greatly undervalued. Definately going to do something similar again.) Many files are good. You should actually reduce the number of functions in user_routines.c and user_routines_fast.c. Have a file devouted to translating human input, another one for driving, and several for autonomous. (I consider autonomous a 95-10 situation: 95% of your work goes into 10% of the match.) In 2004 (code) and in 2005, I organized code based on function on the robot. All the hardware interaction went through abstraction macros/functions. This ment higher-level code would do things like: Code:
//user_routines.c, line 175 //Map Joysticks to drive train Drive_Joystick(OI_Left, OI_Right); Code:
// Drive.c, line 51
void Drive_Joystick(char Left, char Right)
{
if(Left > 127)
{
Left_CIM = Left_Drill = (128 + JOYSTICK_SMOOTHING[Left - 127]);
}
else
{
Left_CIM = Left_Drill = (127 - JOYSTICK_SMOOTHING[127 - Left]);
}
// Right_CIM = Right_Drill = Right;
if(Right > 127)
{
Right_CIM = Right_Drill = (128 + JOYSTICK_SMOOTHING[Right - 127]);
}
else
{
Right_CIM = Right_Drill = (127 - JOYSTICK_SMOOTHING[127 - Right]);
}
}
This is a simplistic sample. The Hand_*() functions in Grabber.c (which maybe should have been broken up) are the most complex, due to the current-limiting sensor. BTW, this example is not from the year I used doxygen, so the functions themselves are poorly documented. *_Check() functions compared the input value to the current value and reacted appropriately (except the drive code, which just mapped input to output without feedback). |
|
#3
|
||||
|
||||
|
Re: Programming Organization
If you are intent upon using Subversion (like someone I know is.) and you want to use Eclipse (which I do) then I would suggest using an Eclipse plug-in called Subclipse. It's made by the same people that make Subversion. It's not as nice as Eclipse's CVS integration but it's more than adequate for FIRST purposes. Also, more information on Eclipse (e.g. installation instructions, setting up a basic project, etc) along with an updated version of my plug-in can be found in this white paper.
The white paper itself is not very useful if you are already familiar with Eclipse, but otherwise it should be helpful. |
|
#4
|
|||||
|
|||||
|
Re: Programming Organization
I would second the recommendation by Mike Sorrenti ealier in this thread about using CVS to share code among the programmers and manage changes. An environment that integrates CVS very nicely is Eclipse. See this thread (http://www.chiefdelphi.com/forums/sh...ad.php?t=37736) for information about using Eclipse for FRC development. We've switched to it, and will never go back. You basically trade Eclipse for MPLAB, and although you lose the simulation capability, it is not all that useful for FRC projects anyway. In exchange, you get CVS, a C-aware editor, and experience with an IDE environment that is the standard in many commercial development shops.
It will take some learning and effort to get the eclipse and CVS environment set up, and for you to understand how to steer it, so if you're going to do it, start now so you're up to speed before competition season. Pretty good information is available in the CD thread mentioned above, and a few others you can find by searching for Eclipse. I am willing to help via PM or even phone, as long as the level doesn't get overwhelming. BTW - Eclipse is open source and free, so there are no costs or difficult licensing issues. If you want CVS but not Eclipse, maybe TortoiseCVS would be the way to go. It's also free and open-source. You can get a free CVS account from sourceforge.net. By using it, you are not only getting change control, sharing among your team members, and backup, but you're sharing with other FIRST teams - in true FIRST spirit! You can see all of our code there, in sourceforge project "crush1011". Bill Bennett Last edited by WizardOfAz : 23-11-2005 at 17:04. |
|
#5
|
|||||
|
|||||
|
Re: Programming Organization
Quote:
The advice given so far about using some version management system (like for example CVS or Subversion) is good (actually, it's even handy if you were the only one programming since if you're ever in a situation where you make a big oops you can revert back to a good copy). One thing that I would like to add though, is that with such a large group I would consider it likely that there will be problems with certain members not having enough to do at times (which can spin off into a feeling of not making a valuable contribution and eventually a lack of interest in attending) none of which are good things. Be very careful about this; it's not always easy to notice and people won't always admit if they're feeling left out. Assuming your programming team does both robot and website programming it might be worth splitting into two subgroups so that people can take ownership of a particular task. |
|
#6
|
|||
|
|||
|
Re: Programming Organization
The primary purpose of coding standards is to make the source code easy to read. While the compiler may not care, source code MUST be readable by humans. If you're used to the standard in place, sometimes you can glance at a piece of code and know there's a problem because it just doesn't look "right". When the body of code is uniform, it's just easier to read and understand. This may not seem all that important on small projects like the control code for a FIRST robot, but for real projects of half a million lines of code, it becomes very important for productivity. On projects like that people come and go and it's important that things be clear and concise.
FWIW, the example programs that come with Microsoft's Visual Studio are NOT good examples of how to program in a production environment. In fact, most of the examples roaming around the web are pure crap. Unfortunately, this obervation probably also applies to the majority of production code in acutal software products. |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Programming Vex w/ MPLab | dababyjebus | FIRST Tech Challenge | 27 | 25-04-2008 09:11 |
| Programming - Getting Started | Mark McLeod | Programming | 80 | 16-04-2008 23:37 |
| Organizing a programming team. | scitobor 617 | Programming | 7 | 28-01-2005 19:18 |
| Team 342 Training and Organization | cbolin | Team Organization | 1 | 15-01-2005 10:37 |
| Robot Programming Education | phrontist | Programming | 11 | 03-05-2004 07:32 |