Table of Contents


**Team Kebab-Sauna inc.**


Group members



Plan


Mission

Plan and implement a game for android


Vision

Addictive and simple game to spoil our exam weeks


Idea

“Student”-pacman


Questions from the idea



Progress

Playing
Game will implemented turn-based, because it's easier to control the opponent NPC character with turns.

Character: model Teemu Teekkari
Picture: Includes 4 different poses, beer pint and kebab

Version Cluster

Version Kaplaaki

Version KRK

Version Enklaavi

Version Armatuuri

Version Pelletti

Version Ketek

Version Sätky

Kebab ja olut

Screenshots

Add screenshots


Start screen, without buttons

Compare PACMAN Menu window


Code

Add code.


Presentations

Add presentations.

Idea presentation, friday - eka_esitys.odp
Final presentation, sunday - final_esitys.odp
Poster -

Helper code (starting a game from a menu activity, from the maze example)

package com.jforeach.mazegame;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

public class Game extends Activity {
	
	
	
	public void onCreate(Bundle bundle) {
		super.onCreate(bundle);
		Intent intent = getIntent();
		Bundle extras = intent.getExtras();
		Maze maze = (Maze)extras.get("maze");
		GameView view = new GameView(this,maze);
		//MainThread mainThread = new MainThread(view);
		setContentView(view);
		
		
	}
}

Source code

Le sauce in a g-zipped tarball

Conclusions