Difference between revisions of "BTP300 The Only One"

From CDOT Wiki
Jump to: navigation, search
(Bug Fixes)
(Bug Fixes)
Line 41: Line 41:
  
 
'''4.''' '''Error''':
 
'''4.''' '''Error''':
<img href="http://postimage.org/image/nyix8autl/"></img> <br />
+
  [[Image:After.png|widthpx| ]]
   '''Fix''': Set '''hide(CDirection)''' default value to "C_STATIONARY" (Told the prof and he fixed it on the BTP300 page)
+
  <br />
 +
   '''Fix''': This error can be caused in 3 places, either on your hide, capture or draw function ('''CFrame''' class that is)
 +
  Your functions should look like this:
 +
  <br />
 +
  <span style="color:blue">void</span> hide(CDirection frame){
 +
    restore(absrow(), abscol(), height(), width(), (CDirection)frame, _hiddenChars);
 +
    release(('''<span style="color:green">void**</span>''')&_hiddenChars);
 +
  }
 +
  <br />
 +
  <span style="color:blue">void</span> capture(){
 +
    <span style="color:blue">if</span>(!_hiddenChars)
 +
        _hiddenChars = '''<span style="color:green">cio</span>'''::capture(absrow(), abscol(), height(), width());
 +
  }
 +
  <span style="color:blue">void</span> CFrame::draw(int draw){
 +
  <span style="color:blue">//Sureee, just make sure to use
 +
  //SetLine to draw your box and
 +
  //When you're printing your height
 +
  //Use this </span> <br />
 +
  <span style="color:blue">for</span>(i = 1; i < height() - 1; i++){
 +
    <span style="color:blue">//Code Here</span>
 +
  } <br />
 +
  <span style="color:blue">//DON'T FORGET THAT -1 !!!!</span>
 +
  }

Revision as of 00:04, 3 November 2011


BTP300 Fall 2011 | Weekly Schedule | Student List | Project Requirements | Teams and their Projects | Student Resources

Assignment #2

Repository

Repo ID

svn://zenit.senecac.on.ca/btp300_113rep10

Trunk Status

committed by [Simon de Almeida] on 2011-10-12 / being committed by [no one]

Team Members

  1. Simon De Almeida
  2. Dmitry Garanin

eMail All

Project Status

Assignment 1 in Trunk Folder

Resources

Bug Fixes

1. Error:

 "cframe.h:15: error: default argument for parameter of type 'CFrame*'" 
Fix: Easy fix, just do a (Cframe*)NULL on the last contructor argument.

2. Error:

 a2test.cpp: In function 'void testFrame()':
 a2test.cpp:150: error: no matching function for call to 'CFrame::draw()'
 cframe.h:33: note: candidates are: virtual void CFrame::draw(int)
 a2test.cpp:151: error: no matching function for call to 'CFrame::draw()'
 cframe.h:33: note: candidates are: virtual void CFrame::draw(int) 
Fix: Set draw(int) default value to "C_FULL_FRAME" (Told the prof and he fixed it on the BTP300 page)

3. Error:

 a2test.cpp:175: error: no matching function for call to 'CFrame::hide()'
    cframe.h:34: note: candidates are: virtual void CFrame::hide(CDirection)
    a2test.cpp:176: error: no matching function for call to 'CFrame::hide()'
    cframe.h:34: note: candidates are: virtual void CFrame::hide(CDirection) 
Fix: Set hide(CDirection) default value to "C_STATIONARY" (Told the prof and he fixed it on the BTP300 page)

4. Error:

 After.png
 
Fix: This error can be caused in 3 places, either on your hide, capture or draw function (CFrame class that is) Your functions should look like this:
void hide(CDirection frame){ restore(absrow(), abscol(), height(), width(), (CDirection)frame, _hiddenChars); release((void**)&_hiddenChars); }
void capture(){ if(!_hiddenChars) _hiddenChars = cio::capture(absrow(), abscol(), height(), width()); } void CFrame::draw(int draw){ //Sureee, just make sure to use //SetLine to draw your box and //When you're printing your height //Use this
for(i = 1; i < height() - 1; i++){ //Code Here }
//DON'T FORGET THAT -1 !!!! }