Restructured the source code in the Playdate bindings target.

This commit is contained in:
2026-07-25 12:40:14 +02:00
parent 2e7ee12ec1
commit b435a6e8bd
106 changed files with 3754 additions and 3746 deletions
@@ -0,0 +1,14 @@
internal import CPlaydate
extension Scoreboards {
/// A board belonging to the game.
public struct Board {
public let boardID: String
public let name: String
init(_ board: PDBoard) {
boardID = String(playdateCString: board.boardID) ?? ""
name = String(playdateCString: board.name) ?? ""
}
}
}
@@ -0,0 +1,21 @@
internal import CPlaydate
extension Scoreboards {
/// The game's boards.
public struct BoardsList {
public let lastUpdated: UInt32
public let boards: [Board]
init(_ list: PDBoardsList) {
lastUpdated = list.lastUpdated
var boards = [Board]()
if let entries = list.boards {
boards.reserveCapacity(Int(list.count))
for index in 0..<Int(list.count) {
boards.append(Board(entries[index]))
}
}
self.boards = boards
}
}
}
@@ -0,0 +1,25 @@
internal import CPlaydate
extension Scoreboards {
/// A score on a board.
public struct Score {
public let rank: UInt32
public let value: UInt32
public let player: String
public let boardID: String?
init(_ score: PDScore) {
rank = score.rank
value = score.value
player = String(playdateCString: score.player) ?? ""
boardID = String(playdateCString: score.boardID)
}
init(_ score: PDListScore, boardID: String?) {
rank = score.rank
value = score.value
player = String(playdateCString: score.player) ?? ""
self.boardID = boardID
}
}
}
@@ -0,0 +1,27 @@
internal import CPlaydate
extension Scoreboards {
/// The scores on a board.
public struct ScoresList {
public let boardID: String
public let lastUpdated: UInt32
public let playerIncluded: Bool
public let limit: UInt32
public let scores: [Score]
init(_ list: PDScoresList) {
boardID = String(playdateCString: list.boardID) ?? ""
lastUpdated = list.lastUpdated
playerIncluded = list.playerIncluded != 0
limit = list.limit
var scores = [Score]()
if let entries = list.scores {
scores.reserveCapacity(Int(list.count))
for index in 0..<Int(list.count) {
scores.append(Score(entries[index], boardID: boardID))
}
}
self.scores = scores
}
}
}