Giter VIP home page Giter VIP logo

snakegame's Introduction

SnakeGame

  • 語言:Swift
  • 架構:MVVM
  • 控制方式:Swipe

設計方向

遊戲畫面

設定畫面中一格的單位,根據不同螢幕解析度去計算最大格子數、蛇的寬度、食物的位子...等。 好處在各種螢幕上都能感受到滿版效果,缺點是遊戲上不符合邏輯,平板的格子數比手機多,存活率跟得分會佔優勢。

蛇的組成

蛇的身體由Queue搭配自定義class Point(x, y),每一個Point代表一節身體。 根據定義的單位去進行各種計算,比如,單位為10,往右邊前進,下一個頭的節點為(x + 10, y)

繪圖方式

原先在UIBezierPath與CGContext做考量,基於以下兩個原因,最後採用UIBezierPath。

  1. UIBezierPath屬於在Core Animation,CGContext屬於在Core Graphics,而Core Animation是封裝Core Graphics,考量到只需要繪畫背景、蛇、食物,都是矩形就能完成的事情,不太需要用到較底層的CGContext
  2. 某篇stackoverflow表示UIBezierPath是對Core Graphics進行封裝,所以性能是差不多的,個人實測用模擬去繪製16000個5*5矩形,UIBezierPath與CGContext效能並無相差。

snakegame's People

Contributors

bing-kuo avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.