diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e10f6c1 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +.PHONY: run +run: + @love . + +.PHONY: build +build: + @zip -9 -r /tmp/Sudoku.love . -x '*.git*' + @mkdir -p build + @mv /tmp/Sudoku.love build + @cat static-binaries/love-arm64 build/Sudoku.love > build/sudoku-arm64 + @chmod +x build/sudoku-arm64 + @cat static-binaries/love-amd64 build/Sudoku.love > build/sudoku-amd64 + @chmod +x build/sudoku-amd64 + diff --git a/demo.lua b/demo.lua deleted file mode 100644 index e69de29..0000000 diff --git a/main.lua b/main.lua index fc019c3..cbfadd1 100644 --- a/main.lua +++ b/main.lua @@ -1,4 +1,4 @@ -sudoku = require "sudoku.sudoku" +sudoku = require "sudoku" uiUtils = require "ui.utils" config = require "config" SudokuCanvas = require "ui.sudokucanvas" @@ -7,12 +7,16 @@ board = {} function love.load() love.window.setTitle("Sudoku!") + love.window.fullscreen = true + love.window.setMode(0, 0) love.mouse.setGrabbed(false) love.keyboard.setKeyRepeat(true) math.randomseed(os.time()) board = sudoku.loadBoard(config.board.filePath) - local width, height = love.graphics.getDimensions() + -- local width, height = love.graphics.getDimensions() + local width, height = love.window.getDesktopDimensions() + love.window.setMode(width, height, {fullscreen = true}) sudokuCanvas = SudokuCanvas:new(500, 50, height/1.1, config.SudokuCanvas) sudokuCanvas:setBoard(board[1]) myFont = love.graphics.newFont(24) diff --git a/static-binaries/love-amd64 b/static-binaries/love-amd64 new file mode 100755 index 0000000..ddc922d Binary files /dev/null and b/static-binaries/love-amd64 differ diff --git a/static-binaries/love-arm64 b/static-binaries/love-arm64 new file mode 100755 index 0000000..0d6be5c Binary files /dev/null and b/static-binaries/love-arm64 differ diff --git a/sudoku/sudoku.lua b/sudoku.lua similarity index 99% rename from sudoku/sudoku.lua rename to sudoku.lua index 040b7e1..53b5297 100644 --- a/sudoku/sudoku.lua +++ b/sudoku.lua @@ -55,7 +55,7 @@ function loadBoard(fn) local boards = {} local r = 0 local board = {} - for line in io.lines(fn) do + for line in love.filesystem.lines(fn) do if line:gsub("%s+", "") == "" then table.insert(boards, board) board = {} diff --git a/sudokuGUI b/sudokuGUI deleted file mode 100755 index 1003ed0..0000000 --- a/sudokuGUI +++ /dev/null @@ -1,3 +0,0 @@ -#! /bin/sh - -love .