ndac_todoroki
Thinking of implementing a Chess game in Elixir, I created a module which will represent a chess piece as a struct.
defmodule Piece do
alias __MODULE__, as: Piece
@piece_types ~w(King Queen Rook Bishop Knight Pawn)a
@type type :: :King | :Queen | :Rook | :Bishop | :Knight | :Pawn
defstruct [:type]
@type t :: %Piece{ type: type() }
defguard is_type(piece_type) when piece_type in @piece_types
def new(type) when is_type(type), do: %Piece{type: type}
end
then there is a struct that represents an active piece:
defmodule Fighter do
alias __MODULE__, as: Fighter
@type owner :: :player | :opponent
defstruct [ :owner, :piece, :position ]
@type t :: %Fighter{ owner: owner(), piece: Piece.t(), position: BoardCoordinate.t }
end
So I have a List of Fighters when the game starts. I came to a circumstance where I want to sort the Fighters.
The result should be sorted first by fighter.owner, then by fighter.piece.type, and then by fighter.position, so it will be
- my king
- my queen
… - my most left-top pawn
- my secondly left-top pawn
… - opponent’s king
- opponent’s queen
…
and so on. Can I perform this on a single custom sort? (Like performing fighters |> Fighter.sort())?
For that I thought setting a default sort algorism for each struct type could be a simple way, but I couldn’t have sorted(!) this out.
Any help and thoughts are welcomed!
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
New
I’m using an Umbrella project for a Phoenix application, and I want to have one Ecto Repo and one PostgreSQL database shared by all apps....
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #ai
- #iex
- #graphql
- #elixirconf-us
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kokolegorille
Not that it helps with your sorting question, but I have done two chess libs in Elixir…
The second is a translated from Erlang and generates all possible moves. Maybe it helps
japplegame
My AVLTree implementation with custom sorting function: GitHub - japplegame/avl_tree: Pure Elixir AVL tree implementation · GitHub
ndac_todoroki
Thanks, but this is just an example for a more generic question… Sorting your nested structs in ways you desire to.
But I’m gonna have fun with those repos!
ndac_todoroki
Giving a custom function to (e.g.
Enum.sort/3) was what I first considered, but it doesn’t help when you want to sort nested structs…But anyway, I like your AVLTree! It is very simple. Thanks!
ndac_todoroki
And I’ve kind of came up with some way: implementing a custom sort Protocol may do.
And then :
fighters |> Enum.sort(&ChessSorter.asc/2). So this recursively does sorting down to basicKernel.<=s.But I am afraid this may be veery slow.
Is it?
Qqwy
Elixir’s sorting function is stable. This means that you can first sort the whole list of fighters on the least-important condition, then on the second-least important condition , etc. and finally on the most important condtion, and they will end up in the order you’d expect.
So in your case
And, by taking advantage of the fact that tuples are ordered elementwise (we look at the next element only if the current element is equal), we could write it like this instead as well:
However, this will not give the answer you’d like yet, because many things are represented by symbols, which by default are sorted alphabetically (whereas you’d like the given order
King > Queen > Bishop > ...andplayer > opponent. The translation functions you wrote for your custom sorter would indeed be a solution to this.It is possible to automate that a little, by creating a map of the numerically ordered equivalents (like
piece_type_ordering = piece_types |> Enum.with_index |> Enum.into(%{})), which you’d want to generate at compile time, so you can just write a function then that will turn a given thing into their ordering.I think a protocol like the following might make sense:
whose implementation for e.g.
%Piecewould simply return the number that is stored for the given type’s symbol key.And for
%Fighter, it would return e.g.ndac_todoroki
Wow, this is amazing how minimum the code could be. It was a whole new study for me. Thanks for the information!!
japplegame
With
Orderableprotocol you also can use AVLTree like this:All inserted elements will be automatically sorted.
Qqwy
@japplegame Interesting! I wrote a library a while back to build and work with Priority Queues called prioqueue, which abstracts away the implementation details of how this queue is maintained, and lets you plug in your own. I think making an AVLTree implementation would be a great idea! When will you upload AVLTree to Hex.PM?
@ndac_todoroki Glad to be able to help. I guess the
Orderableprotocol could be wrapped in a library, since I think it is rather common to want to do this kind of stuff. We might even provide built-in implementations for common ordered enumerables that callOrderable.orderablefor all their contained elements… Let me conjure up something!Qqwy
Done! The orderable library has been built, tested, documented and published.