Giter VIP home page Giter VIP logo

android-fifteenpuzzle's Introduction

Fifteen Puzzle game

Fifteen Puzzle made with Android Studio and Kotlin

  • Game needs some styling. Currently it works but it looks basic.

Image

Details

  • This application is a simple Fifteen Game.

  • The "board" is made from 16 buttons. The "empty space" is a white button with no text.

  • The pieces that player can move are buttons with text from 1->15.

  • When a player clicks a button, we check:

    • All it's neighbours on 4 directions: North, South, East and West.
    • On a matrix those positions would be:
      • x + (1,0)
      • x - (0,1)
      • y + (1,0)
      • y - (0,1)
    • We ignore those who go out of bounds ( bigger than matrix size or negative values )
    • If we find a neighbour that has no text this is our empty button, and the current button will switch places with it.
  • All buttons positions are saved in a List so we can check if they are in order. If the list is sorted, the game is over.

android-fifteenpuzzle's People

Contributors

giuraionut 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.