Difference between revisions of "Team !YOU - BIO Library"
Fmdeoliveira (talk | contribs) m (→added status column to table) |
Fmdeoliveira (talk | contribs) m (→Updated Committing Tasks) |
||
(47 intermediate revisions by 9 users not shown) | |||
Line 1: | Line 1: | ||
<big><big>'''[http://zenit.senecac.on.ca/wiki/index.php/Team_!YOU_-_OOP344 Team !You]'''</big></big> - To the main team page. | <big><big>'''[http://zenit.senecac.on.ca/wiki/index.php/Team_!YOU_-_OOP344 Team !You]'''</big></big> - To the main team page. | ||
+ | |||
+ | *A link to the [http://zenit.senecac.on.ca/wiki/index.php/BIOF_20101_%28AS1%29_-_OOP344 assignment]. | ||
+ | *A link to the [http://zenit.senecac.on.ca/wiki/index.php/Team_!YOU_-_Codes Codes' snippet]. | ||
= Basic Input Output Library = | = Basic Input Output Library = | ||
+ | == Task 1: Committing Simple Function == | ||
{| class="wikitable" border="1" | {| class="wikitable" border="1" | ||
|+ Simple Function Commit Tasks | |+ Simple Function Commit Tasks | ||
− | ! Function !! Member Responsible !! Status | + | ! Function !! Member Responsible !! Status !! Committed : BY |
|- | |- | ||
− | | void bio_init() || MattAdams || | + | | void bio_init() || MattAdams || Completed || Yes : Matthew Adams |
|- | |- | ||
− | | void bio_end() || tjcatibog || | + | | void bio_end() || tjcatibog || || |
|- | |- | ||
− | | int bio_rows() || CDNPadawan || | + | | int bio_rows() || CDNPadawan || Completed || Yes : Matthew Daniels |
|- | |- | ||
− | | int bio_cols() || | + | | int bio_cols() || CDNPadawan || Completed || Yes : Matthew Daniels |
|- | |- | ||
− | | void bio_clrscr() || fmDeOliveira || | + | | void bio_clrscr() || fmDeOliveira || Completed || Yes : Felipe de Oliveira |
|- | |- | ||
− | | void bio_flush() || fmDeOliveira || | + | | void bio_flush() || fmDeOliveira || Completed || Yes : Felipe de Oliveira |
|- | |- | ||
− | | int bio_getch() || ammisko || | + | | int bio_getch() || ammisko || Completed || Yes : Andrew Misko |
|- | |- | ||
− | | void bio_move(int r, int c) || nsimmalavong || | + | | void bio_move(int r, int c) || nsimmalavong || Completed || Yes : Niki Simmalavong |
|- | |- | ||
− | | void bio_putch(int c) || award || | + | | void bio_putch(int c) || award || Completed || Yes : Amy Ward |
|- | |- | ||
− | | void bio_putstr(const char* str) || Minooz || | + | | void bio_putstr(const char* str) || Minooz || Completed || Yes : Minoo Ziaei |
|} | |} | ||
− | + | == Task 2: bio_edit() switch cases == | |
+ | |||
+ | [http://zenit.senecac.on.ca/wiki/index.php/BIOF_20101_(AS1)_-_OOP344#Line_Editor:_int_bio_edit.28.........29 Function Specs Here] | ||
+ | |||
+ | {| class="wikitable" border="1" | ||
+ | |+ bio_edit() switch cases | ||
+ | ! case !! Member Responsible !! Status !! Committed : BY | ||
+ | |- | ||
+ | | UP_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | DOWN_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | LEFT_KEY || tjcatibog || Completed || mziaei1 | ||
+ | |- | ||
+ | | RIGHT_KEY || tjcatibog, mziaei1 || Completed, Debugged || mziaei1 | ||
+ | |- | ||
+ | | PGUP_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | PGDN_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | ENTER_KEY || mziaei || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | TAB_KEY || tjcatibog, mziaei1 || Debugging, completed || mziaei1 | ||
+ | |- | ||
+ | | BACKSPACE_KEY || tjcatibog, mziaei1 || Debugging, completed || mziaei1 | ||
+ | |- | ||
+ | | DEL_KEY || tjcatibog, mziaei1 || Completed, Debugged || mziaei1 | ||
+ | |- | ||
+ | | HOME_KEY || tjcatibog || Completed || mziaei1 | ||
+ | |- | ||
+ | | END_KEY || tjcatibog, mziaei1 || Completed, Debugged|| mziaei1 | ||
+ | |- | ||
+ | | ESCAPE_KEY || tjcatibog || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | INSERT_KEY || tjcatibog || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F1_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F2_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F3_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F4_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F5_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F6_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F7_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F8_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F9_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F10_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F11_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |- | ||
+ | | F12_KEY || fmdeoliveira || Completed || fmdeoliveira | ||
+ | |} | ||
+ | |||
+ | == Task 3: Other Complex Functions == | ||
+ | |||
+ | |||
+ | {| class="wikitable" border="1" | ||
+ | |+ Other Complex Functions | ||
+ | ! Function !! Members Working On It !! Status !! Committed : BY | ||
+ | |- | ||
+ | | bio_display || Fardad || completed || fmdeoliveira | ||
+ | |- | ||
+ | | bio_displayflag || mziaei1 || completed || mziaei1 | ||
+ | |- | ||
+ | | bio_flag || mdadams1 || completed || fmdeoliveira | ||
+ | |- | ||
+ | | bio_displayMenuItem || ammisko, fmdeoliveira || completed || fmdeoliveira | ||
+ | |- | ||
+ | | bio_menuItem || ammisko, fmdeoliveira || completed || fmdeoliveira | ||
+ | |} |
Latest revision as of 00:03, 26 February 2010
Team !You - To the main team page.
- A link to the assignment.
- A link to the Codes' snippet.
Contents
Basic Input Output Library
Task 1: Committing Simple Function
Function | Member Responsible | Status | Committed : BY |
---|---|---|---|
void bio_init() | MattAdams | Completed | Yes : Matthew Adams |
void bio_end() | tjcatibog | ||
int bio_rows() | CDNPadawan | Completed | Yes : Matthew Daniels |
int bio_cols() | CDNPadawan | Completed | Yes : Matthew Daniels |
void bio_clrscr() | fmDeOliveira | Completed | Yes : Felipe de Oliveira |
void bio_flush() | fmDeOliveira | Completed | Yes : Felipe de Oliveira |
int bio_getch() | ammisko | Completed | Yes : Andrew Misko |
void bio_move(int r, int c) | nsimmalavong | Completed | Yes : Niki Simmalavong |
void bio_putch(int c) | award | Completed | Yes : Amy Ward |
void bio_putstr(const char* str) | Minooz | Completed | Yes : Minoo Ziaei |
Task 2: bio_edit() switch cases
case | Member Responsible | Status | Committed : BY |
---|---|---|---|
UP_KEY | fmdeoliveira | Completed | fmdeoliveira |
DOWN_KEY | fmdeoliveira | Completed | fmdeoliveira |
LEFT_KEY | tjcatibog | Completed | mziaei1 |
RIGHT_KEY | tjcatibog, mziaei1 | Completed, Debugged | mziaei1 |
PGUP_KEY | fmdeoliveira | Completed | fmdeoliveira |
PGDN_KEY | fmdeoliveira | Completed | fmdeoliveira |
ENTER_KEY | mziaei | Completed | fmdeoliveira |
TAB_KEY | tjcatibog, mziaei1 | Debugging, completed | mziaei1 |
BACKSPACE_KEY | tjcatibog, mziaei1 | Debugging, completed | mziaei1 |
DEL_KEY | tjcatibog, mziaei1 | Completed, Debugged | mziaei1 |
HOME_KEY | tjcatibog | Completed | mziaei1 |
END_KEY | tjcatibog, mziaei1 | Completed, Debugged | mziaei1 |
ESCAPE_KEY | tjcatibog | Completed | fmdeoliveira |
INSERT_KEY | tjcatibog | Completed | fmdeoliveira |
F1_KEY | fmdeoliveira | Completed | fmdeoliveira |
F2_KEY | fmdeoliveira | Completed | fmdeoliveira |
F3_KEY | fmdeoliveira | Completed | fmdeoliveira |
F4_KEY | fmdeoliveira | Completed | fmdeoliveira |
F5_KEY | fmdeoliveira | Completed | fmdeoliveira |
F6_KEY | fmdeoliveira | Completed | fmdeoliveira |
F7_KEY | fmdeoliveira | Completed | fmdeoliveira |
F8_KEY | fmdeoliveira | Completed | fmdeoliveira |
F9_KEY | fmdeoliveira | Completed | fmdeoliveira |
F10_KEY | fmdeoliveira | Completed | fmdeoliveira |
F11_KEY | fmdeoliveira | Completed | fmdeoliveira |
F12_KEY | fmdeoliveira | Completed | fmdeoliveira |
Task 3: Other Complex Functions
Function | Members Working On It | Status | Committed : BY |
---|---|---|---|
bio_display | Fardad | completed | fmdeoliveira |
bio_displayflag | mziaei1 | completed | mziaei1 |
bio_flag | mdadams1 | completed | fmdeoliveira |
bio_displayMenuItem | ammisko, fmdeoliveira | completed | fmdeoliveira |
bio_menuItem | ammisko, fmdeoliveira | completed | fmdeoliveira |