1. 程式人生 > >高階軟體工程第九次作業----------團隊作業6◆◆◆◆◆◆IP、IC、IQ卡團隊Beta Sprint 7

高階軟體工程第九次作業----------團隊作業6◆◆◆◆◆◆IP、IC、IQ卡團隊Beta Sprint 7

    Beta  Sprint  7

    1.  會議照:

    

 

     2.    Beta daily task 7:

      

成員 昨天的工作 今天的工作 遇到的問題
吳忠粱 修復系統偶爾丟擲的Debug Assertion Failed異常

修復在Windows 8 作業系統中,在遊戲過程中無法返回主選單的問題 1

 返回主介面之後,系統無法再繼續遊戲
楊德明 修復在Windows 8 作業系統中單擊“英雄榜”按鈕無法顯示的問題1 修復在Windows 8 作業系統中,在遊戲過程中無法返回主選單的問題 2 暫無 
張志勇 修復在Windows 8 作業系統中單擊“英雄榜”按鈕無法顯示的問題2 修復在Windows 8 作業系統中,在遊戲過程中無法返回主選單的問題 3 暫無 

 

       3.  Burn down chart:

        

 

       4.  Code/Document  Check-in 記錄已上傳至 Coding  地址  https://coding.net/u/godbee/p/LastHomework/git

       5.   專案程式執行截圖:

          修復“返回主選單”功能

void CTetrisView::DrawStartbk(CDC * pDC, CRect rect)
{
    CDC dc;
    BITMAP bmp;
    startBK.GetBitmap(
&bmp); dc.CreateCompatibleDC(pDC); dc.SelectObject(startBK); pDC->StretchBlt(0, 0, rect.Width(), rect.Height(), &dc, 0, 0, bmp.bmWidth, bmp.bmHeight, SRCCOPY); } void CTetrisView::CreateMenuButtons(CRect rect) { int l = (rect.Width() / 2) - 90; int t = (rect.Height() / 2) - 21 - 60; int r = (rect.Width() / 2) + 90; int b = (rect.Height() / 2) + 21 - 60; int BtOffset = 80; GameStartButton = NewMyButton(IDS_GAMESTART_MYBUTTON, CRect(l, t, r, b), 0); HelpButton = NewMyButton(IDS_HELP_MYBUTTON, CRect(l, t + 2 * BtOffset, r, b + 2 * BtOffset), 0); ExitButton = NewMyButton(IDS_MENUEXIT_BUTTON, CRect(l, t + BtOffset, r, b + BtOffset), 0); }

           附圖: