├── LICENSE ├── LuoguPaintBoard.gpl ├── LuoguPaintBoard.irs ├── README.md ├── cookies.json ├── data ├── ImageToData.py ├── board.json └── board2.json ├── paint.py ├── preview.html ├── runbattle.bat ├── runbattle.sh ├── runorder.bat ├── runorder.sh ├── runrand.bat └── runrand.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouuan/LuoguPaintBoard/HEAD/LICENSE -------------------------------------------------------------------------------- /LuoguPaintBoard.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouuan/LuoguPaintBoard/HEAD/LuoguPaintBoard.gpl -------------------------------------------------------------------------------- /LuoguPaintBoard.irs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouuan/LuoguPaintBoard/HEAD/LuoguPaintBoard.irs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouuan/LuoguPaintBoard/HEAD/README.md -------------------------------------------------------------------------------- /cookies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouuan/LuoguPaintBoard/HEAD/cookies.json -------------------------------------------------------------------------------- /data/ImageToData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouuan/LuoguPaintBoard/HEAD/data/ImageToData.py -------------------------------------------------------------------------------- /data/board.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /data/board2.json: -------------------------------------------------------------------------------- 1 | var board = [] -------------------------------------------------------------------------------- /paint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouuan/LuoguPaintBoard/HEAD/paint.py -------------------------------------------------------------------------------- /preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouuan/LuoguPaintBoard/HEAD/preview.html -------------------------------------------------------------------------------- /runbattle.bat: -------------------------------------------------------------------------------- 1 | :loop 2 | python paint.py battle 3 | goto loop -------------------------------------------------------------------------------- /runbattle.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | while : 3 | do 4 | python3 paint.py battle 5 | done -------------------------------------------------------------------------------- /runorder.bat: -------------------------------------------------------------------------------- 1 | :loop 2 | python paint.py order 3 | goto loop -------------------------------------------------------------------------------- /runorder.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | while : 3 | do 4 | python3 paint.py order 5 | done -------------------------------------------------------------------------------- /runrand.bat: -------------------------------------------------------------------------------- 1 | :loop 2 | python paint.py rand 3 | goto loop -------------------------------------------------------------------------------- /runrand.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | while : 3 | do 4 | python3 paint.py rand 5 | done --------------------------------------------------------------------------------