Changes

Jump to: navigation, search

OOP344 - HOTYS - 20102

6,609 bytes added, 17:11, 25 July 2010
IRC Schedule/Log: - Added Log 7
{{OOP344 Index}}
This is team = <big>'''HOTYSHomepage''' homepage!!!</big> =
<p>Welcome to '''HOTYS''' homepage!!!</p>
<p>The Name of the team is derived from the first letter of each group member's name:</p>
 
<span style="font-size: 1.75em; font-weight: bolder;">H</span>an Chul Kim <br />
<span style="font-size: 1.75em; font-weight: bolder;">O</span>sman Mirza <br />
<span style="font-size: 1.75em; font-weight: bolder;">T</span>ony Kim <br />
<span style="font-size: 1.75em; font-weight: bolder;">Y</span>uJin Jeong <br />
<span style="font-size: 1.75em; font-weight: bolder;">S</span>tephanie Law <br />
<br />
== <big>Member List</big> ==
{| class="wikitable sortable" border="1" cellpadding="5"
|+ OOP344 - 2010 Team HOTYS -
! || Last<br /> Name !! Name !! Seneca <br /> Username !! Section !! Blog Url !! IRC Nick !! My Contributions
|-
| a || Kim || Han ||[mailto:hckim3@learn.senecac.on.ca hckim3] || A || [http://hckim.wordpress.com/ My Blog] || han3 || [[Special:Contributions/Hckim3| Hckim3 ]]
|-
| b || Mirza || Ozzy ||[mailto:omirza@learn.senecac.on.ca omirza] || A || http://0zzym.wordpress.com/ || OzZy_M || [[Special:Contributions/OzzyOzZy| OzZy ]]
|-
| c || Kim || Tony (Kijeong) || [mailto:kjkim@learn.senecac.on.ca kjkim] || A || [http://kijeongkim.blogspot.com/ My Blog] || TonyKim || [[Special:Contributions/kjkim| kjkim]]
|-
| d || Jeong || YuJin ||[mailto:yjeong@learn.senecac.on.ca yjeong] || A || [http://yujinjeong.wordpress.com/ Spirit & Soul] || YuJin_YJ_|| [[Special:Contributions/Takeiteasy| Takeiteasy ]]
|-
| e || Law || Stephanie ||[mailto:slaw12@learn.senecac.on.ca slaw12] - || A || [http://slaw12.wordpress.com/ My Blog]- ||Slaw12 ||[[Special:Contributions/slaw12| slaw12]]
|}
<br />
 
== <big>Project Development Page</big> ==
[http://zenit.senecac.on.ca/wiki/index.php/OOP344_-_HOTYS_Project_Dev_Page_-_20101 Team Project]
<br />
 
== <big>Discussions</big> ==
[http://zenit.senecac.on.ca/wiki/index.php/OOP344_-_HOTYS_Discussion_-_20102 Discussion Page]
 
<br />
== <big>IRC Schedule/Log</big> ==
<span style="font-size: 125%; font-weight: bolder; color: #FF0000; text-decoration: overline underline;">&nbsp;&nbsp;Group meetings will be held on Sundays at 12pm in #seneca-HOTYS.&nbsp;&nbsp;</span><br />
Logs:
<ul>
<li>[http://zenit.senecac.on.ca/wiki/index.php/OOP344_-_HOTYS_IRC_Logs_-_052310_-_20102 Log 1] - This meeting mainly covered coding styles to be used and other group norms</li>
<li>[http://zenit.senecac.on.ca/wiki/index.php/OOP344_-_HOTYS_IRC_Logs_-_053010_-_20102 Log 2] - This meeting mainly is us waiting for Fardad to show up. We later decided to split the functions and get to work since the assignment page was already up</li>
<li>[http://zenit.senecac.on.ca/wiki/index.php/OOP344_-_HOTYS_IRC_Logs_-_060610_-_20102 Log 3] - This meeting we went over the simple functions and added v0.1 in tags as a group. Had some Borland Problems we fixed.</li>
<li>[http://zenit.senecac.on.ca/wiki/index.php/OOP344_-_HOTYS_IRC_Logs_-_060613_-_20102 Log 4] - This meeting we went over the distribution list.</li>
<li>[http://zenit.senecac.on.ca/wiki/index.php/OOP344_-_HOTYS_IRC_Logs_-_062010_-_20102 Log 5] - This meeting was focused on fixing bugs and committing to trunk in preparation of Fardad's test main</li>
<li>[http://zenit.senecac.on.ca/wiki/index.php/OOP344_-_HOTYS_IRC_Logs_-_071810_-_20102 Log 6] - This meeting we distributed the project's work and created a rough time line for completion.</li>
<li>[http://zenit.senecac.on.ca/wiki/index.php/OOP344_-_HOTYS_IRC_Logs_-_072510_-_20102 Log 7] - This meeting we put together all classes and went over bugs to fix and features to add. HOTYS - TextEdit v0.2 was committed to trunk
</ul>
<br />
 
==<big>Coding Style Rules</big>==
Every file should have a function header with:<br />
<ul>
<li>File name</li>
<li>Programmer Full name</li>
<li>Date last modified</li>
</ul>
 
Example:<br />
<div>
<b style="color: #008800; line-height: 0.5em;">
<span style="color: #008800;">/*<br />
Title<br />
Title.h<br />
By: Full Name<br />
Date Last Modified: 9:59 AM April-15-10<br />
Description of what is in the file<br />
*/<br />
</span>
</b>
</div>
<br />
 
Variable names should be meaningful so additional comments are not necessary to explain what the variable does.
 
Example:
<div>
<b style="color: #000000; line-height: 0.5em;">
int nNum; <span style="color: #008800;">//Bad</span><br />
int nNumOfTypes <span style="color: #008800;">//Good</span><br />
</b>
</div>
<br />
 
A lower case prefix should be fitted to the variable name to help describe it at a glance:
 
<table border="1" cellspacing="3" cellpadding"5">
<tr style="border: 1px solid #000000; text-align: center;">
<th>Prefix</th>
<th>Data Type</th>
<th>Example</th>
<tr style="border: 1px solid #000000; text-align: center;">
<td>n</td>
<td>int</td>
<td>nNumOfSignals</td>
</tr>
<tr style="border: 1px solid #000000; text-align: center;">
<td>c</td>
<td>char</td>
<td>cTypeMode</td>
</tr>
<tr style="border: 1px solid #000000; text-align: center;">
<td>b</td>
<td>boolean</td>
<td>bIsTrue</td>
</tr>
<tr style="border: 1px solid #000000; text-align: center;">
<td>f</td>
<td>float</td>
<td>fLength</td>
</tr>
<tr style="border: 1px solid #000000; text-align: center;">
<td>d</td>
<td>double</td>
<td>dWidth</td>
</tr>
<tr style="border: 1px solid #000000; text-align: center;">
<td>s</td>
<td>C-Style null terminated string<br />OR a String object</td>
<td>sUserInput</td>
</tr>
<tr style="border: 1px solid #000000; text-align: center;">
<td>p</td>
<td>pointers</td>
<td>pnNumOfSignals</td>
</tr>
<tr style="border: 1px solid #000000; text-align: center;">
<td>m_</td>
<td>Data Member/<br />Instance Variable</td>
<td>m_pnNumOfSignals<br /><b>NOT</b><br />pnm_NumOfSignals<br /><b>OR</b><br />mpn_NumOfSignals</td>
</tr>
</table>
 
All variable declarations should be done on their own lines!
 
There should be NO single character names for variables (Ex: i, j, k, etc) except for arbitrary counters, such as for for loops
 
All const and #define Variable names should be in All Caps
Example:<br />
<div>
<b style="color: #000000; line-height: 0.5em;">
const int nMAX_TRIPS;<br />
#define MAX_TRIPS 1<br />
</b>
</div>
<br />
== <big>Team Project</big> ==
[http://zenit.senecac.on.ca/wiki/index.php/OOP244_-_HOTYS_Project_Dev_Page_-_20101 Team Project]
Pointers should be declared in C++ style: Example:<br /><div><b style="color: #000000; line-height: 0.5em;"> int* x;<br /> NOT<br /> int * x; OR int *x;<br /></b></div><br /> Class names should be all lower case except for the first letter, which should be upper case. Function names should have meaningful names (They do not require prefix). Function names Should be all lower case except for the First letter of each Word. Example:<br /><div><b style= "color: #000000; line-height: 0.5em;"> GetChar();<bigbr />Discussions NOT<br /big> ==[http: getChar(); OR Getchar();<br /></b></div><br /zenit>  Each function should have only one point of entry and one point of exit! I.E. There should be only 1 return statement in each function.senecac Each function should have a header describing what it doesUse Inline comments to describe hard to read code. All inline code should be set to the same indention as the code it is describing.  Example:<br /><div><b style="color: #000000; line-height: 0.5em;"> //Comment<br /> GetChar();<br /> NOT<br /> //Comment<br /> GetChar()<br /></b></div><br />  Opening braces should be on.cathe same line as the defining function/if/wikielse if/indexetc statement.php Example:<br /OOP344_><div><b style="color: #000000; line-_HOTYS_Disscussion_-_20102 Discussion Page]height: 0.5em;"> void FunctionOne(int){<br /> if (x > y){<br /> NOT<br /> void FunctionOne(int)<br /> {<br /> if (x > y)<br /> {<br /></b></div> <b>There should be NO use of the tab character!!!Each indent should be 3 blank spaces!</b>
[http://zenit.senecac.on.ca/wiki/index.php/How_to_set_up_tab_spaces This] shows how to set up tab settings
== <bigbr />IRC Schedule/Log<br /big> ==[http://zenit.senecac.on.ca/wiki/index.php/OOP344_-_HOTYS_IRC_-_20102 IRC Page]
1
edit

Navigation menu