1)Revision History

Date

Issue

Description

Author

8/May/2015

1.0

Finish the WPF of our small game,solve the logic problem

Haoxiaotian

15/May/2015

2.0

Finish the windows phone and the windows part

Haoxiaotian

 

2)Problem Statement

we are a group,and we think out a good idea, it's a game,but when we finish it ,find that what we do is a little ugly,there is still a lot to do,and there is a lot to study.

Our game's name is Naughty egg, what you should do is to controll your own ball, and escape from the bads and try to meet the goods. There is 3 level wait for you!

When we start the game, we know nothing, for the interface and the background control. And we first do some logical thinking, and  design the basic things of the game, drow some uggly pictures, and after that we began.

Not only did we learn something new, but also we gradually did our work. We also meet with a lot of problems, such as how to bind the action of the interface with the background data. Too many things we are unfamiliar with.

3)Glossary

Table of Contents

                1. Introduction

                2. Definitions

                       2.1 What we do

                       2.2 Team work

                       2.3 How to achieve it

Introduction:

about the game:

It's a simple game, the idea come from my team mate Shen Yuelong,The following is the main idea:

In our life, there is always something  or some people pass by, good or bad, and some are important. But when we have time, when  we reflect on ourselves, we ususally find that we missed something or we spent much time on useless things. When we see this, we are gradually growing up. This is our game's main idea.

The game is easy, you are a small ball, there will be lots of things runing background (good or bad), coming and leaving,but you can't see, just like what happened in our life. You are the small ball, when the good comes, the background color will change to green, the closer you are, the deeper the background color will be. And the same with the bad things, the diffence is in this cases the color will be red.

Definitions

     (1)What we do

a simple game

(2)Team work

with my partner ShenYuelong

(3)How to achieve it

The launguage:c#

visual studio 2013, work with the wpf, windows 8.1 and windows phone 8.1

4)Supplementary Specification

                       Table of Contents

1. Objectives

2. Scope

3. References

4. Functionality

5. Usability

6. Reliability

7. Performance

8. Supportability

9. Security

10. Design Constraints

Naughty Egg Specification 

Objectives

What we want is though this game developing experience, turely learn something and do something.

And the main idea of our game is also inform us do the important things in different times and try to avoid the bad things surrounded with us.

Scope

Using in the windows platform

References

books and some blogs

Functionality

Have fun and help to understand what is life.

Usability

Windows 8.1 and Windows Phone.

Reliability

The game is still have some bags, we need do more.

Performance

Clear, stable and efficient. Easy to use and friendly to users.

Supportability

None.

Security

Local file saving data, not connecting to the Internet.

Lesson10 Fianl and fellings的更多相关文章

  1. Java之fianl修饰符

    fianl修饰的变量不可以改变,一旦获得初始值,该final变量的值就不能被重新赋值. 1.final成员变量(必需由程序员显式地指定初始值) 类变量:必须在静态初始化块中或者声明该变量时指定初始值, ...

  2. 《java入门第一季》之面向对象面试题(fianl关键字)

    /* 面试题:final修饰局部变量的问题 基本类型:基本类型的值不能发生改变. 引用类型:引用类型的(地址值)(不能发生改变),但是,该对象的堆内存的值是可以改变的. */ class Studen ...

  3. React.js 小书 Lesson10 - 组件的 state 和 setState

    作者:胡子大哈 原文链接:http://huziketang.com/books/react/lesson10 转载请注明出处,保留原文链接和作者信息. state 我们前面提到过,一个组件的显示形态 ...

  4. lesson10总结

    package lesson10; public class Fa { String name="I am Fa"; static{  System.out.println(&qu ...

  5. fianl关键词

    一.final关键字概述 final关键字具有最终或不可改变的含义,可用于修饰类.变量.方法.因此被final修饰的类.变量.方法具有以下特征: --final修饰的类不能被继承: --final修饰 ...

  6. lesson10:hashmap变慢原因分析

    下面的英文描述了String.hashCode()方法,在特定情况下,返回值为0的问题: Java offers the HashMap and Hashtable classes, which us ...

  7. Day05(fianl、抽象类、接口)

    final关键字修饰的类不能被继承.修改,修饰的方法不能被子类覆盖,修饰的变量(是常量)不能被修改. 抽象类:abstract关键字定义的类 继承树中越是在上方的类越抽象,在解决实际问题时,通常将父类 ...

  8. static和fianl修饰变量的区别

    参考:http://hllvm.group.iteye.com/group/topic/37682 http://blog.csdn.net/javakuroro/article/details/68 ...

  9. 自测之Lesson10:管道

    题目:建立双向管道,实现:父进程向子进程传送一个字符串,子进程对该字符串进行处理(小写字母转为大写字母)后再传回父进程. 实现代码: #include <stdio.h> #include ...

随机推荐

  1. python之doctest的用法

    doctest是python自带的一个模块,你可以把它叫做“文档测试”(doctest)模块. doctest的使用有两种方式:一个是嵌入到python源中.另一个是放到一个独立文件. doctest ...

  2. TouTiao开源项目 分析笔记4==>一个简单APP 整体常用框架

    1.效果预览 1.1.如下图所以,到目前为止所有的功能. 2.从InitApp开始->SplashActivity->MainActivity 2.1.InitApp源代码.这是整个项目的 ...

  3. Robolectric

    今天学习了单元测试框架,Robolectric.初步感觉,可能我测试的少,没有感觉Robolectric能有多大的帮助.虽然可以帮助创建activity.可以模拟点击事件.可是有什么呢. 好吧,讲下使 ...

  4. 途牛banner自动轮播

    <!DOCTYPE html>               <!--申明文档类型:html--> <html lang="en">       ...

  5. HTTP协议中POST方法和GET方法有那些区别?

    GET用于向服务器请求数据,POST用于提交数据 GET请求,请求参数拼接形式暴露在地址栏,而POST请求参数则放在请求体里面,因此GET请求不适合用于验证密码等操作 GET请求的URL有长度限制1k ...

  6. Python 实现MD5加密

    from hashlib import md5 def encrypt_md5(s): # 创建md5对象 new_md5 = md5() # 这里必须用encode()函数对字符串进行编码,不然会报 ...

  7. 每天一个Linux命令(9):cp命令

    cp命令用来将一个或多个源文件或者目录复制到指定的目的文件或目录.它可以将单个源文件复制成一个指定文件名的具体的文件或一个已经存在的目录下.cp命令还支持同时复制多个文件,当一次复制多个文件时,目标文 ...

  8. 最小化安装Linux的常用配置整理

    基于安全性考虑,将服务器进行最小化安装,毕竟软件包越少,漏洞越少,相对来说就约安全,但是最小化安装会给运维带来一些问题和不便,下面是我总结的,常见的一些配置和工具的安装,仅供各位大神参考,如有新的id ...

  9. python命名空间、作用域、闭包与传值传引用

    (以下内容,均基于python3) 最近在看python函数部分,讲到了python的作用域问题,然后又讲了Python的闭包问题. 在做作业的时候,我遇到了几个问题,下面先来看作业. 一. 作业1: ...

  10. Android数据储存之SharedPreferences总结

    写在前面:本文是我参考李刚老师的<疯狂Android讲义>以及API所写的读书笔记,在此表示感谢,本人小白,如有错误敬请指教. SharedPreferences的使用背景: 有时候,应用 ...