EE308FZ LAB2-2

Blue_Ice03 2022-11-18 22:25:42
The Link Your Class
https://bbs.csdn.net/forums/MUEE308FZU202201
The Link of Requirement of This Assignment
https://bbs.csdn.net/topics/608859318
MU STU ID and FZU STU ID
20124805_832001130
Teammate's MU STU ID and FZU STU ID
20123141_832001117
Teammate's blog link
https://bbs.csdn.net/topics/609330370?spm=1001.2014.3001.6377
GitHub link
https://github.com/Blue-Ice03/EE308-LAB2-Bobing-Game
Video demo link
My Video Link on Bilibili

目录

  • 1. PSP TABLE
  • 2. LEARNING PROGRESS BAR
  • 3. Programming Thinking & Key Functions
  • 3.1 PROGRAMMING THINKING
  • 3.2 KEY FUNCTIONS
  • 4. IMPORTANT EVENTS
  • 5.The Pair Programming Experience
  • 6. FINAL RESULTS
  • SUMMARY

1. PSP TABLE

PSP2.1
Personal Software Process Stages
预估耗时(分钟)
实际耗时(分钟)
Planning
计划
· Estimate· 估计这个任务需要多少时间
20
20
Development
开发
· Analysis· 需求分析 (包括学习新技术)
30
90
· Design Spec· 生成设计文档
20
20
· Design Review· 设计复审 (和同事审核设计文档)
20
50
· Coding Standard· 代码规范 (为目前的开发制定合适的规范)
40
60
· Design· 具体设计
200
290
· Coding· 具体编码
400
640
· Code Review· 代码复审
120
40
· Test· 测试(自我测试,修改代码,提交修改)
210
300
Reporting
报告
· Test Report· 测试报告
30
30
· Size Measurement· 计算工作量
20
20
· Postmortem & Process Improvement Plan· 事后总结, 并提出过程改进计划
40
40
TOTAL
总计
1150
1510

2. LEARNING PROGRESS BAR

Day
New Code
(line)
Cumulative Code
(line)
Learning Time
this Day(hours)
Total Learning
Time (hours)
Important Growth
1
60
60
2.5
2.5
Learn how to use software, learn to write code basic language and operation.
2
100
160
3
5.5
Write the basic part of the code, complete the small program page Settings.
3
130
290
3
8.5
Each page layout and style modification and adjustment completed, each page can jump smoothly.
4
230
520
5.5
14
Implementation of single-player mode coding
5
280
800
6
20
Code the multiplayer mode.
6
170
970
3
23
Improve the small program function, fix some game bugs
7
50
1020
2
25
Perform final debugging optimization

3. Programming Thinking & Key Functions

3.1 PROGRAMMING THINKING

As this was the first time we had set out to create a fully functional piece of software, we first consulted a very large amount of information on the subject and it was difficult for us to implement a complete front and back-end piece of software in a week with no basic knowledge. Understanding that the WeChat applet development framework was relatively easy to get started with, we decided to use WeChat applets as the vehicle for this development.

First of all, we started to follow the teaching videos on the learning website to learn the use of wechat development tools and the code specifications and grammar styles of different files, and gradually completed the front-end page through continuous experiments and exploration

Then, for the backend database interface and data store construction, we used open source templates in POSCMS. To be honest, due to time constraints, we were unable to master the backend development and could only implement some basic functions. We will continue to refine and improve these features over time.

In the process of improving the basic functionality, we encountered the following difficulties:

  • Adaptation of page button positions, button function jumping;

  • The basic rules of Bobing, sorting out the code logic of Bobing results;

  • Recording of Bobing results.

3.2 KEY FUNCTIONS

Ⅰ. Award level based on dice results —— “random" function

Because the final result of Bobing will generate a lot of awards, which leads to the complexity of Bobing's rules and the confusion of coding logic. In the process of sorting out the logic rules step by step, we will continue to modify, experiment and modify. We will show some code here.

/*
基于六个骰子点数的博饼结果的判断语句
设置一个名为strarr的字符串数组,并直接用push的方法推入结果,可以实现多次博饼
*/
if (four === 1 && one + two + three + four + five + six != 21 && one < 4 && two < 4 && three < 4 && five < 4 && six < 4) {
      this.data.strarr.push("一秀")          
    }
    if (four === 2 && one < 4 && two < 4 && three < 4 && five < 4 && six < 4) {
      this.data.strarr.push("二举")          
    }
    if (four === 3) {
      this.data.strarr.push("三红")
    }
    if (two === 4 || three === 4 || one === 4 || five === 4 || six === 4) {
      this.data.strarr.push("四进")
    }
    if (one == 1 && two == 2 && three == 1 && four == 2 && five == 1 && six == 2) {
      this.data.strarr.push("对堂")
    }
    if (four === 4 && one !== 2) {
        this.data.strarr.push("状元")
    }
    if (five == 5 || three == 5 || two == 5 || one == 5 || six == 5) {
      this.data.strarr.push("五子登科")
    }
    if (four == 5) {
      this.data.strarr.push("五红")
    }
    if (six == 6 || five == 6 || three == 6 || two == 6) {
      this.data.strarr.push("六杯黑")
    }
    if (one == 6) {
      this.data.strarr.push("遍地锦")
    }
    if (four == 6) {
      this.data.strarr.push("六杯红")
    }
    if (four == 4 && one == 2) {
      this.data.strarr.push("金花")
    }
    if (four == 0 && one < 4 && two < 4 && four < 4 && five < 4 && six < 4 && three < 4) {
      this.data.strarr.push("谢谢参与")
    }
 
 
onLoad: function (options) {
    var
      a = Math.floor(Math.random() * 6) + 1,
      b = Math.floor(Math.random() * 6) + 1,
      c = Math.floor(Math.random() * 6) + 1,
      d = Math.floor(Math.random() * 6) + 1,
      e = Math.floor(Math.random() * 6) + 1,
      f = Math.floor(Math.random() * 6) + 1;
}//    使用简单的自带函数即可,注意应该在onLoad(){}中写这段代码,使得载入本页面
 

Ⅱ. Realize multiplayer pancake game in traditional form —— "random1" function

On the basis of equation 1, we can achieve single person multiple times of pancakes and carry out results statistics and awards.

However, if we want to achieve multi person and multi time forum,we need additional functions to count the forum results and issue rewards. This is not easy for us."random1" is used to realize this complex function.

//每次按下摇骰子按钮就会唤起这个函数
/*
    这个函数时我们js逻辑层的主函数,其中通过调用我们自己编写的函数来实现传统的博饼游戏对局
*/
reload() {
    //重新摇色子
    this.random()
    
    var bobing = this.Def_bobing();//计算博饼大小的函数,逻辑和function一样
   
    this.judge(this.data.Gamernum, bobing)//这个函数用来判断
    
    this.countbing(bobing)//传统博饼中有奖池,这个函数计算奖池中剩余的奖项
    
    
    //终结逻辑
    if (this.sumbing() != 0) {
      // 玩家更替的逻辑
      if (this.data.Gamernum < this.data.Gamernumc) {
        var temp = this.data.Gamernum + 1
        this.setData({
          Gamernum: temp,
        })
      } else {
        this.setData({
          Gamernum : 1
        })
      }
    } else {//将得到的结果储存在本地gamerarr系列的数组
      this.data.score1 = this.bingNum(this.data.gamerarr1)//利用bingNum()统计每个人收获的饼
      this.data.score2 = this.bingNum(this.data.gamerarr2)
      this.data.score3 = this.bingNum(this.data.gamerarr3)
      this.data.score4 = this.bingNum(this.data.gamerarr4)
      this.data.score5 = this.bingNum(this.data.gamerarr5)
      this.data.score6 = this.bingNum(this.data.gamerarr6)
      this.setData({
        score1 : this.bingNum(this.data.gamerarr1),
        score2 : this.bingNum(this.data.gamerarr2),
        score3 : this.bingNum(this.data.gamerarr3),
        score4 : this.bingNum(this.data.gamerarr4),
        score5 : this.bingNum(this.data.gamerarr5),
        score6 : this.bingNum(this.data.gamerarr6),
        recode: false
      })
    }
 
  },
  to_index(){
    wx.navigateTo({
      url: '../index/index',
    })
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.setData({
      Gamernumc: app.globalData.People,
    })
    
  },
 

4. IMPORTANT EVENTS

  • How to make dice dynamic
    This was another difficult point of coding and makes we debated for some time. To animate the dice, we initially opted to use gifs, but after some practical work, we found that if we used gifs, the number of dice in the end could not be determined. So we opted to make the static image move to achieve this. This was much more difficult than using a direct motion picture, so it also took us a long time to code.

  • Writing key parts of the code

    The most critical part of the Bobing mini program is to determine the player's winning result based on the number of dice. In this part, we need to determine the number of dice, of which there are six, and by the total number of dice, which adds another layer of difficulty to our coding. This part of the code is the most logical and complex part. Although it's difficult, we finished it. When this part of the code is complete, there are many gains for us.

  • Understanding of view layer and learning JS language to finish UI interface
    The previous week, we handled the UI page.Our page design is beautiful enough, but it is also very complex. Therefore, this week it affects our page coding accordingly, bringing us some difficulties.
    In order to complete the UI page we designed, we need to have a good understanding of view layers, and we need to be more proficient in the JS language. For this reason, we have been striving to improve our logic understanding, view understanding, and JS language programming capabilities since the beginning of the experiment; We have paid a lot of effort and effort, and similarly, we have gained a lot.

5.The Pair Programming Experience

We have not done pair programming for the first two weeks and after the last week we have had some experience of pair programming. This week's programming assignment was even more ambitious and complex than last week's, giving us a special experience, and we were also able to better distribute the parts that needed to be done separately and those that needed to be done together. We were also able to respect each other's ideas better in the face of arguments and not let them take up a lot of time, and we were able to control and plan our work better, making it easier for us to complete our programming assignments and to improve the completion of them.

img

6. FINAL RESULTS

The url for this work on GitHub:

The video for this assignment shows the link:

img

SUMMARY

Through this experiment, I learned that if you want to develop a piece of software, from the initial concept to the main design, from the logical implementation of the function to the construction of the code, plus the final testing and performance optimization, each step will take a lot of time. Communication and collaboration with partners can make things easier to get done. In this experiment, we achieved all the functions expected in the prototype design, but in order to be beautiful and smooth, we had to compromise: give up some image and functional perfection. In addition, due to the limitation of time and ability in the experiment, we have not further improved some functions and there are shortcomings. I hope to further explore and improve these abilities in the following research. At the same time, we hope that in the future, we can develop more interesting and more complete mini-program.

...全文
187 回复 打赏 收藏 转发到动态 举报
写回复
用AI写文章
回复
切换为时间正序
请发表友善的回复…
发表回复

285

社区成员

发帖
与我相关
我的任务
社区描述
福州大学 梅努斯国际工程学院 软件工程(2022秋) 教学
软件工程 高校
社区管理员
  • LinQF39
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧