ガベこれ GabeColle

f:id:Jumpaku:20180226132331p:plain f:id:Jumpaku:20180226132307p:plain f:id:Jumpaku:20180226132313p:plain f:id:Jumpaku:20180226132318p:plain

Introduction

ガベこれとは私のチームで開発したゲームです. このゲームはガベージコレクションを題材にしています. ガベージコレクションとはプログラミングでメモリの管理を自動的に行う仕組みです. このゲームはガベージコレクションを画面上に生成される円をクリックして消す行為で表現しました.
今回のリリースは学校祭出品用なのでQuitボタンとTwitter機能が無効になっています.

Rule

Game1, Game2, Game3の各ゲーム画面によって細かいルールは異なります. しかし基本は以下の通りです.

  1. 画面上に円形のオブジェクトが生成される(alloc)
  2. プレイヤは不必要なオブジェクトを破棄する(free)
  3. 不必要なオブジェクトとはROOTから矢印を辿って到達できないものである

Source code

ここを見るhttps://github.com/GabeColle/GabeColle

How to play

  1. ここからダウンロードGabeColle.zip - Google ドライブ
  2. GabeColle.zipを展開
  3. GabeColle.exeを実行

サイズが約54MBと大きいです.

New version

学校祭展示用だったGabeColle 1 を一般公開の為にに少し変更して, GabeColle 2 としました.

Changes

  • 全画面モードをウィンドウモードに変更
  • Quitボタンを有効化
  • Twitter機能を有効化

Introduction

GabeColle is a game developed by our team. The motif of this game is Garbage Collection. Garbage Collection is a form of automatic memory management. You click circles on the screen and erase them. This is simulation of Garbage Collection.
This release is for college festival. Therefore Quit button and Twitter button is disabled.

Rule

There are some difference of detail rule between 3 game scenes, Game1, Game2, and Game3, however, basic rule is same. Basic rule is as follows.

  1. Circle objects are constructed on your screen.(alloc)
  2. You click and destruct them if they are no use objects.(free)
  3. If you cannot arrive to a object from ROOT passing through some allows, the object is no use object.

Source code

  1. See herehttps://github.com/GabeColle/GabeColle

Download

  1. Download from GabeColle.zip - Google ドライブ.
  2. Extract GabeColle.zip
  3. Execute GabeColle.exe

This file size is 54MB, it is large.

Version 2

GabeColle 1 was for college festival. To release for public, we made little changes.

Changes