thirteen-tien-len/app/controllers/tables_controller.rb
2023-04-28 17:59:23 +00:00

123 lines
2.9 KiB
Ruby

class TablesController < ApplicationController
before_action :set_table, only: [:show, :edit, :update, :destroy, :new_game]
respond_to :html, :json
def play_now
# First empty seat
@seat = Seat.where(user_soft_token: nil).select{|s| !s.player.try("is_bot?")}.first
if @seat
authorize @seat
@seat.sit current_user
else
authorize @table = Table.create(title: "Table " + current_user.soft_token[0..4])
@seat = @table.seats.first
@seat.sit current_user
end
redirect_to @seat.table
# @game = Game.play_now(current_user)
# @table = @game.table
# @seats = @table.seats.order(:position).map {|s| s.occupied? ? nil : s}
# @seat = @seats.compact.last.sit(current_user)
end
# GET /tables
# GET /tables.json
def index
@tables = authorize Table.all
end
# GET /tables/1
# GET /tables/1.json
def show
authorize @game
# TODO refactor to ensure play for 2nd and 3rd place
if @game.controlling_player.try("is_bot?")
@game.controlling_player.auto_play
@game.save
@game.reload
end
end
def new_game
authorize @table
@game = @table.add_game
begin
@game.start
rescue
flash[:errors] = @game.errors
end
redirect_to @table
end
def tutorial
flash[:notice] = "Tutorial coming soon!"
redirect_to root_path
end
# GET /tables/new
def new
@table = Table.new
end
# GET /tables/1/edit
def edit
end
# POST /tables
# POST /tables.json
def create
@table = Table.new(table_params)
respond_to do |format|
if @table.save
format.html { redirect_to @table, notice: 'Table was successfully created.' }
format.json { render :show, status: :created, location: @table }
else
format.html { render :new }
format.json { render json: @table.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /tables/1
# PATCH/PUT /tables/1.json
def update
respond_to do |format|
if @table.update(table_params)
format.html { redirect_to @table, notice: 'Table was successfully updated.' }
format.json { render :show, status: :ok, location: @table }
else
format.html { render :edit }
format.json { render json: @table.errors, status: :unprocessable_entity }
end
end
end
# DELETE /tables/1
# DELETE /tables/1.json
def destroy
@table.destroy
respond_to do |format|
format.html { redirect_to tables_url, notice: 'Table was successfully destroyed.' }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_table
@table = Table.find(params[:id])
@game = @table.current_game
@seats = @table.seats.order(:id)
end
# Never trust parameters from the scary internet, only allow the white list through.
def table_params
params.require(:table).permit(:title)
end
end