Skip to content

Commit

Permalink
CI Package Deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
drkameleon committed Nov 28, 2024
1 parent de68b34 commit 7f158a5
Show file tree
Hide file tree
Showing 103 changed files with 799 additions and 228 deletions.
4 changes: 2 additions & 2 deletions packages/info/claude.art
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ tags: [
"claude-api"
]
stats: #[
stars: 2
watch: 2
stars: 4
watch: 4
]
author: #[
name: "drkameleon"
Expand Down
26 changes: 26 additions & 0 deletions packages/info/fianchetto.art
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

name: "fianchetto.art"
fullName: "drkameleon/fianchetto.art"
url: "https://github.com/drkameleon/fianchetto.art"
description: "Chess-aware custom types, FEN/PGN parsing & more"
tags: [
"arturo"
"arturo-language"
"arturo-package"
"chess"
"chess-programming"
"fen"
"fen-parsing"
"pgn"
"pgn-parser"
]
stats: #[
stars: 1
watch: 1
]
author: #[
name: "drkameleon"
url: "https://github.com/drkameleon"
avatar: "https://avatars.githubusercontent.com/u/1265028?v=4"
]

4 changes: 2 additions & 2 deletions packages/info/grace.art
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ tags: [
"syntax-highlighting"
]
stats: #[
stars: 7
watch: 7
stars: 9
watch: 9
]
author: #[
name: "drkameleon"
Expand Down
4 changes: 2 additions & 2 deletions packages/info/grafito.art
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ tags: [
"sqlite3"
]
stats: #[
stars: 151
watch: 151
stars: 153
watch: 153
]
author: #[
name: "arturo-lang"
Expand Down
4 changes: 2 additions & 2 deletions packages/info/tabular.art
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ tags: [
"terminal"
]
stats: #[
stars: 1
watch: 1
stars: 5
watch: 5
]
author: #[
name: "drkameleon"
Expand Down
4 changes: 2 additions & 2 deletions packages/info/validator.art
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ tags: [
"validator"
]
stats: #[
stars: 7
watch: 7
stars: 8
watch: 8
]
author: #[
name: "drkameleon"
Expand Down
263 changes: 263 additions & 0 deletions packages/version/fianchetto.art
Original file line number Diff line number Diff line change
@@ -0,0 +1,263 @@
[
#[
version: 0.0.1
date: to :date "2024-11-28T15:25:05+00:00"
link: "https://github.com/drkameleon/fianchetto.art/releases/tag/v0.0.1"
details: #[
size: 47311
files: 16
readme: {

<p align="center"><img align="center" width="500" src="https://raw.githubusercontent.com/drkameleon/fianchetto.art/main/icon.png"/></p>
<p align="center">
<b>Chess-aware components / custom types,<br>and more...</b>
<br><br>
<img src="https://img.shields.io/github/license/arturo-lang/grafito?style=for-the-badge">
<img src="https://img.shields.io/badge/language-Arturo-orange.svg?style=for-the-badge">




</p>

<!--<p align="center"><img width="90%" align="center" src="https://raw.githubusercontent.com/drkameleon/tabular.art/main/screenshot.png"/></p>-->

---

<!--ts-->

* [What does this package do?](#what-does-this-package-do)
* [How do I use it?](#how-do-i-use-it)
* [Type Reference](#type-reference)
* [chessCoords](#chesscoords)
* [chessPiece](#chesspiece)
* [chessMove](#chessmove)
* [chessBoard](#chessboard)
* [chessPosition](#chessposition)
* [chessGame](#chessgame)
* [License](#license)

<!--te-->

---

### What does this package do?

This package includes different useful types for chess programming & analysis: pieces, boards, moves, positions, games. It also comes with FEN & PGN parsing/output capabilities and can - potentially - serve as the foundation of other chess-related apps & packages.

### How do I use it?

Simply `import` it and use any of the provided helper functions or types:

```red
import .withHelpers "fianchetto"!

; Let's create a new chess game!
game: newGame ø!

; What about showing the FEN string?
print ["Initial FEN:" game\position]

; Make moves using coordinates
game\makeMove "e2e4"
game\makeMove "e7e5"
game\makeMove "g1f3"

; and... let's print board!
print "Final position:"
print game\position\board
```

Will produce:

```
Initial FEN: rnbkqbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBKQBNR w KQkq - 0 1
Final position:
+---+---+---+---+---+---+---+---+
| r | n | b | q | k | b | n | r |
| p | p | p | p | - | p | p | p |
| - | - | - | - | - | - | - | - |
| - | - | - | - | p | - | - | - |
| - | - | - | - | P | - | - | - |
| - | - | - | - | - | N | - | - |
| P | P | P | P | - | P | P | P |
| R | N | B | Q | K | B | - | R |
+---+---+---+---+---+---+---+---+
```

### Type reference

#### chessCoords

Mainly used to hold square coordinates, or a file-rank pair.

##### constructor

<pre>
<b>to :chessCoords</b> [<ins>coords</ins> <i>:string :block :integer</i>]
</pre>

##### fields

- `\file`
- `\rank`

##### methods

- `\index`

#### chessPiece

The main chess piece representation

##### constructor

<pre>
<b>to :chessPiece</b> [<ins>ch</ins> <i>:char :literal :string</i>]
</pre>

##### fields

- `\color`
- `\kind`

##### methods

- `\white?`
- `\getMovePattern [fromSq :chessCoords, toSq :chessCoords]`

#### chessMove

A move type, encapsulating an origin and a target square.

##### constructor

<pre>
<b>to :chessMove</b> [<ins>coordset</ins> <i>:string :block</i>]
</pre>

##### fields

- `\fromSq`
- `\toSq`

#### chessBoard

The main chess board

##### constructor

<pre>
<b>to :chessBoard</b> []
</pre>

##### fields

- `\squares`

##### methods

- `\getPiece [coords :chessCoords]`
- `\setPiece [coords :chessCoords piece :null :chessPiece]`

#### chessPosition

A given chess position

##### constructor

<pre>
<b>to :chessPosition</b> [<ins>source</ins> <i>:string :null</i>]
</pre>

##### fields

- `\board`
- `\activeColor`
- `\castling`
- `\enPassant`
- `\halfmove`
- `\fullmove`

##### methods

- `\validateMove [newMove :chessMove]`
- `\applyMove [newMove :chessMove]`

> [!TIP]
> You can initialize a `:chessPosition` by directly using a FEN string; or exporting a given position back to FEN, using `to :string`. 😉

#### chessGame

The main chess game container

##### constructor

<pre>
<b>to :chessGame</b> [<ins>source</ins> <i>:string :null</i>]
</pre>

##### fields

- `\position`
- `\moves`
- `\result`
- `\metadata`

##### methods

- `\makeMove: [coords :chessMove :string]`

> [!WARNING]
> Although the future goal of the `:chessGame` constructor is to fully support any type of PGN file input, right now support should be considered extremely limited!

<hr/>

### License

MIT License

Copyright (c) 2024 Yanis Zafirópulos

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

}
license: #[
name: "MIT"
url: "https://choosealicense.com/licenses/mit/"
]
]
url: "https://api.github.com/repos/drkameleon/fianchetto.art/zipball/v0.0.1"
info: #[
entry: "src/fianchetto.art"
depends: [
[
tabular
>=
0.0.1
]
]
requires: [
>
0.9.83
]
executable: false
]
]
]
Loading

0 comments on commit 7f158a5

Please sign in to comment.