Open main menu

CDOT Wiki β

Changes

OOP344 Temporary

3,917 bytes added, 10:55, 10 January 2010
m
Task schedule
[[OOP344]] - [[OOP344 Student List]] - [[OOP344 Teams]] - [[OOP344 Assignment One]] - [[OOP344 Assignment Two]] - [[OOP344 IRC Schedules 20093 | OOP344 IRC Schedules]]<br />
== Team Temporary Name ==
''' Group Contact/Team Leader: Hasan '''
! Last Name !! Name !! Seneca Username !! Section !! Blog Url !! IRC Nick !! Current Task !! SVN Username
|-
| Butnaru Hughes || Stefan Joseph || sbutnaru jphughes || B || [http://cr4zym0nkeyCloudScorpion.blogspot.com Cloudscorpion's Blog] || Fonzie CloudScorpion || - IO_Form || ops344_093svn114ops344_093svn112
|-
| Hughes Johnson || Joseph Ausley || jphughes aljohnson1 || B || [http://CloudScorpionausleyj.blogspot.com Cloudscorpion's My Blog] || CloudScorpion Johnno || - IO_Edit || ops344_093svn112ops344_093svn113
|-
| Johnson Kamal-Al-Deen || Ausley Hasan || aljohnson1 hkamal-al-deen || B || [http://ausleyjorbitalstation.blogspotwordpress.com My BlogThe Orbital Station] || Ausley_Johnson northWind87 || - LinkedList || ops344_093svn113ops344_093svn111
|-
| Kamal-Al-Deen Sandhu || Hasan Charanjit || hkamal-al-deen cssandhu || B || [http://orbitalstationcj-seneca.wordpressblogspot.com The Orbital StationBlog] || northWind87 Charanjit|| IO_Label || ops344_093svn114 |} = Task schedule = {| border="1" cellpadding="5"|+! Task Name !! Assigned to !! Due date !! Completed|-| IO_Field || JP Hughes || - || Done|-| IO_Form || JP Hughes || Thursday, 12th November || Done|-| ULinkedList || Hash Kamal-al-deen || Wednesday, 11th November || Done|-| IO_Frame || Ausley Johnson || - || Done|-| IO_Edit || Ausley Johnson || Sunday, 15th November || Done|-| IO_Vedit || Ausley Johnson || Sunday, 15th November || Done|-| IO_Label || CJ Sandhu || Thursday, 12th November || Done|-| IO_CheckList || CJ Sandhu || Sunday, 20th November || Done|-| IO_Menu || Hash Kamal-al-deen || Tuesday, 17th November || Done|-| IO_Menumgr || Hash Kamal-Al-Deen || - || Done|-| IO_Settings || Hash Kamal-Al-Deen || - || Done|-| CIOL Frame Buffer Extension || Hash Kamal-Al-Deen || - || Done|-| Linux Port || Hash Kamal-Al-Deen || - || Done|-| IO_Button || Hash Kamal-Al-Deen || - || Done|-| IO_ButtonGrp || Hash Kamal-Al-Deen || - || Done|-| IO_Box || Hash Kamal-Al-Deen || - || Done|-| IO_MsgBoxForm<br/>IO_FileForm || Hash Kamal-Al-Deen || - || Done|-| IO_DirBrowser || Hash Kamal-Al-Deen || - || IN PROGRESS|-| IO_TextEditor || JP Hughes || - || Done|-| Word Wrapper || JP Hughes || - || Done|-| IO_Filemgr || Ausley Johnson || - || DONE|-| IO_Controller || JP Hughes || - || DONE|-| IO_EditorForm || JP Hughes || - || DONE|-| IO_PrefForm || ? || - || PLANNED|-| Highlight Functionality || ? || - || PLANNED|-| Copy/Paste || ? || - || ops344_093svn111PLANNED
|-
| Sandhu || Charanjit || cssandhu || B || [http:Search//cj-seneca.blogspot.com Blog] Replace || Charanjit? || - || ops344_093svn114PLANNED
|}
== Coding Standards ==Coding standards are important if now have their own page [[OOP344_Temporary_CodingStandards | here]]!<br/>'''-northWind87''' = Announcements === December 21, 2009 : Meeting Results and The Way Forward == We had another meeting last Thursday and even though we want code to didn't have CJ with us, it was still effective. For now, the way forward seems relatively clear. Out of the meeting, we've decided on the following project requirements: # An IO_Control class will be readableimplemented that will handle the normal operations of the text editor. Now This class will hold the jist one true instance of these rules is that they're "common sense" the IO_Menumgr class and will be responsible for interfacing with readability in mindthe menu. The most important section is the commenting section as it is basically arbitrary while all the others should IO_Form class will be more or less common sensemodified to hold an IO_Control pointer to its IO_Control owner. In any case# An IO_Settings class will be implemented (already complete) that will save, load, and give access to all subsequent project settings such as word wrapping. The classes IO_Field and IO_Control will each hold a pointer an IO_Settings instance. IO_Form will be responsible for passing the entire thing is up here for reference purposesIO_Settings object to newly created IO_Fields from its IO_Control owner.# IO_Filemgr will be further developed by Ausley. We should all attempt It will be able to follow these guidelines when writing codeopen file records and control their read and write operations.<br/><br/>While no one # Some extension classes will be developed. These classes will be derived from the other generic control classes (eg IO_Form, IO_Menu, etc...) and will be prosecuted or killed if they forget one or more specific configurations of thesethose classes. For example, the others a derivation of IO_Form will gently '''remind''' be preferences window known as IO_PrefForm. Currently, the person in question to '''follow the guidelines''' list of extension classes slated for creation is as follows:#* IO_EditorForm (IO_Form -> IO_EditorForm)#* IO_PrefForm (IO_Form -> IO_PrefForm)#* IO_MsgBox (IO_Form -> IO_MsgBox)#* IO_BtnGrp (IO_Menu -> IO_BtnGrp) So there we go, hopefully we can whip this stuff out in short order.
=== Naming Conventions ===* ''' Camel Notation ''' should be used for variable names and function names ** ''' ie ''' <code>myVar, bigInt, getNumber(), myFunction()</code>* Class names should always be ''' First-Letter Capitalized '''** ''' ie ''' <code>TestClass, DynamicStack, PeanutButter, Hammer</code>* Compiler directives should always be written in ''' All Lowercase '''** ''' ie ''' <code>#define, #ifndef</code>* Compiler definitions should be ''' All Uppercase ''' and should only use underscore where a gap is required ** ''' ie ''' <code>IO_CTL_LARGEFILE, SOME_DEFINITION</code>* Header file defines should be preceeded and followed with ''' Two Underscores '''** ''' ie ''' <code>__CIOL_H__, __IO_FORM_H__</code>* Pointer declaration should ''' emphasize the type ''' with the <b>"*"</b> being pushed against the right side of the data type as opposed to the left side of the variable name.** ''' ie ''' <code>char* str, int* num, void* addr</code>* Binary operators should have a space between them and their constituents ('''Note:''' This does not apply to unary operators such as ++ or []).** ''' ie ''' <code>x = 7, z += y, int i = 10, judge = y > 5</code>* As well, please leave a space after every comma and every semicolon if something follows it.** ''' ie ''' <code>foo(int firstInt, int secondInt, int thirdInt), x = bugSquish(parm1, parm2), for (int i = 0; i < 10; i++)</code>* Finally, <code>void</code> should always be explicitly declared.** ''' ie northWind ''' <code>void doStuff(void), int getInt(void)</code>
=== Statement Notation =December 07, 2009 : The Deadline Approaches and The Rise of The New World Order ==The first left parenthesis on a function declaration should open immediately after the function name while the first left parenthesis on a loop declaration should open one space after the loop declaration.<br />''' ie Functions: '''<pre>int hello(char goodbye(void getQuestion(</pre>
Been a while since our last announcement but here we go, a few things to go over:Firstly, I'd like to say on behalf of everyone - '' ie Loops: 'Congratulations!'''<pre>while (for (do (</pre>
In the same senseAs of now, nearly all required functionality has been implemented. Everything from Frame to Textedit is now working (with Textedit nearly working, much thanks to JP for all his hard work on that and the first left parenthesis should immediately follow the function name when Form). I personally feel that this is a function great accomplishment considering that we are planning to move forward ahead of what is calledactually required and into foreign territory.<br/>''' ie ''' <code>x = getInt(), someInt = y + bigSum(y, r)</code>
=== Code Blocks ===Both function blocks With this come a few issues: As we move into uncharted waters, the effects of feature creep will become more and loop blocks should open on more apparent; I've personally felt them in much of my own work. Consider the same line as fact that my ULL is ~600 lines of code and the declaration statement preceding themmenu manager is going to hit something around 400 or 500; however, function blocks should open immediately after even IO_Menu is gargantuan at 300 lines where Fardad's menu is only something like 180 lines. This will put our total project at somewhere near the last right parenthesis 3000+ line mark when it's finished while loop blocks should open one space after Fardad in the beginning of the semester planned for the entire culmination of the last project to be somewhere around 1600 lines of code. I don't know how this will affect everyone but with exams creeping right parenthesisaround the corner, I feel that this might be a good time to take a bit of a rest from this assignment and perhaps take a look back at what we have and what we want.<br />''' ie Functions: '''<pre>int hello(){char goodbye(){void getQuestion(void){</pre>
Preliminarily, I've added some of the features that we would like to have in this editor by January; they are all up for discussion as we must now re-assign duties once again. I'' ie Loops: '''<pre>while (var < 15) {for (int i = 0; i < 15; i++) {m hoping that we can minimally have save and load finished as they are fairly simple but I mean who knows. Anyhow, I look forward to seeing you all on Thursday, we have some discussing to do (blah) {</pre>.
=== Comment Blocks ===All functions should have a comment block preceding them which should explain what the function does in a few brief sentences, what parameters it receives with each parameter having a section preceded by <code>@param</code>, and anything that the function may return preceded by <code>@return</code> at the end of the block. Try to keep things lined up so that they're easier to read.'' -northWind '''
Here == November 04, 2009 : Stefan Butnaru is an example from Assignment 1 utilizing the io_strcpy() function:Officially Out ==<pre>/*Copies a given number Hello, this announcement is to simply inform all that Stefan Butnaru has officially left the group as he plans to drop the OOP344 course in favor of characters the COBOL courses. I have already removed his name from one string to anotherthe group pages, and his task has now been released and can be picked up by anyone who wants it once their current task is completed. *Self copying is allowed. Does not stop at null''' -terminatorCloudScorpion ''' == October 31, always copies 2009 : Meeting Tuesday and Wednesday ==  *Hey guys, our next group meeting will be in the school on Tuesday after class; for details, please see the given number of charactersMeetings section. As well, we have an IRC meeting with Fardad on Wednesday at 5pm. * *@param const char* src address from which to copy charactersIn the time being, please start working on your assigned sections. *@param char* dest address Consider the part of A2 that is currently available online to which characters be final; it will not need to be copiedrevised so please work with the outline currently available. *@param int n number Let's get some work done by Tuesday guys because we don't have too long to finish this thing and ideally I'd like this beginning section to be finished by Friday of characters to copythis coming week. * *@return the address of dest As usual, if there are any discrepancies or if anyone needs some help or if copy was successful, NULL otherwiseyou want to help others then please let me know. */char* io_strcpy(char* dest, const char* src, int n){</pre>See you soon!
Commenting within the function should be generally organized, that's about it for in-function commenting.<br/><br/>
That's about it folks, feel free to add or remove anything if you feel so compelled but please consult the rest of the group first if it is a major change.<br/>
'''-northWind87'''
== Announcements October 30, 2009 : Upcoming Meeting & possible new meetings == Ok guys, we have another IRC meeting at 7:00 PM on Friday October 30 (today). Fardad wants the wiki updated and blogs about the previous meeting up before the meeting at 7:00 PM. He likely wants us all to have assigned tasks by the meeting as well, which northWind and myself have already decided on, and is likely already posted or will be posted shortly after this is posted. I also think it would be a great idea to have some more independant group meetings, preferably one next week. I was not present for the last meeting, and there are some things I'd like to go over with the group, ideas and plans for the upcoming project. A meeting time we can all agree on would be prefereable, but it is not critical that all members be present. I have continued attempting to contact Stefan Butnaru but to no avail. We will have to wait and see. ''' -CloudScorpion ''' == October 27, 2009 : Coding Standards added, meeting with Fardad at 5 pm Wednesday == OK! It was a long write but I've added all the necessary and agreed upon coding standards. As of now they are up here as a reference for everyone. Hopefully we can stick to the guidelines, gentlemen? As usual, if there are any disagreements or discrepancies on anything please feel free to consult me and/or the group in it's entirety. I will be emailing you guys about this change very soon. As well, we have an IRC meeting with Fardad at 5 pm tomorrow (Wednesday) in [irc://irc.freenode.net/#seneca irc://irc.freenode.net/#seneca]. Please be on IRC slightly in advance of 5 pm.''' -northWind87 ''' == October 25, 2009 =: IRC meetings ==
As I've emailed you all, Fardad wants two IRC meetings with us during the study week so please indicate your availability (all of it, all times that you are available) during the study week here.
'''-northWind87'''
=Meetings === Study Week Availability ==Tuesday November 3 ==
Second meeting. We will meet Tuesday after OOP344 class as I'''Hasan:''' Tuesday 11am - 2pm, Wednesday 11am - 6pm, Thursday 6:30pm - 10pm, Friday 6:30pm - 10pm, Saturday 11am - 9pmve confirmed this date with everyone.
== Meetings ==''' Agenda: '''* Discuss the final state of A2.* Decide on any additional features that we may want.* Design the final/altered form of our group's A2.* Plot project time-line up until November 29 which is when A2 is due. That's about it, see you then!<br/>'''-northWind87''' === Tuesday October 27 ===
Alright guys, first meeting ever. The tentative meeting time is so far somewhere in between the afternoon (ie 1 pm) and the evening (ie 5:30 pm) so your input would be highly appreciated.<br/>
As well, we're gonna have to speak to Fardad on IRC at some point although he hasn't been on IRC and hasn't emailed me about it yet so I'll let you all know once I know more. '''-northWind87'''
 
= Discussion =
'''northWind87:''' Added discussion section and our first comment.