Coder Social home page Coder Social logo

minesweeper-api's Introduction

minesweeper-api

Diseñar un modelo usando conceptos DDD, para poder crear un app con el framework Wolkenkit que usa CQRS, Event Sourcing y NodeJS. Se trataria de hacer una api sencilla para el juego Minsweeper (Busca Minas)

Esta seria la lista de items a tener en cuenta:

Cuando una celda sin minas a los lados es descubierta, las celdas a los lados serán descubiertas tambien

Capacidad de ponerle un flag a la celda ya sea con un signo de pregunta o una bandera roja

Debe haber un reloj con maximo de tiempo

timer aggregate:
  commands: [start, stop]
  events: [started, stopped]

Detectar cuando el juego se haya terminado Capacidad de comenzar un nuevo juego, guardar juegos sin terminar y poder jugar donde uno los guardó Capacidad par configurar el juego con parametros como:

  • numero de filas
  • numero de columnas
  • numero de minas
game aggregate:
  numberOfRows
  numberOfCols
  numberOfMines
  squares: [
    {
      isMine: false, 
      adjacentMines: 2, 
      flagged: false, 
      revealed: false, 
      minesLocation: {
        topLeft,
        top,
        topRight,
        right,
        bottomRight
        bottom,
        bottomLeft,
        left,
      }
    },
    ...
  ]
  commands: [start, cancel, revealSquare]
  events: [started, canceled, squareRevealed, lost, won]

Capacidad para soportar varios usuarios / cuentas

Take a look at auth0 service

minesweeper-api's People

Contributors

jcortes avatar

Watchers

 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.