-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hugo/feature/Add Gradient class #560
Draft
HPezz
wants to merge
5
commits into
develop
Choose a base branch
from
hugo/feature/Add-Gradient-class
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
adc936f
:technologist: (RobotKit): Extend UIColor with toHsv() function
HPezz 485abee
:recycle: (RobotKit): Update Robot.Color to future Gradient struct
HPezz 40c803f
:sparkles: (RobotKit): Add Robot.Gradient struct
HPezz d16e286
:bug: (GEK): Add reinforcer duration
HPezz 450a2c8
:recycle: (GEK): Refactor Pairing breathe animation with Gradient
HPezz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -6,7 +6,7 @@ import SwiftUI | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// MARK: - Robot.Color | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// swiftlint:disable nesting identifier_name line_length | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// swiftlint:disable nesting | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public extension Robot { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
struct Color { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -26,22 +26,9 @@ public extension Robot { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self = color | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public init(r: UInt8, g: UInt8, b: UInt8) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.robotRGB = [r, g, b] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.screenRGB = [r, g, b] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public init(fromGradient colors: (Color, Color), at position: Float) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let positionClamped = max(min(position, 1), 0) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let (r1, g1, b1) = (Float(colors.0.robotRGB[0]), Float(colors.0.robotRGB[1]), Float(colors.0.robotRGB[2])) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let (r2, g2, b2) = (Float(colors.1.robotRGB[0]), Float(colors.1.robotRGB[1]), Float(colors.1.robotRGB[2])) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let r = UInt8(r1 + (r2 - r1) * positionClamped) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let g = UInt8(g1 + (g2 - g1) * positionClamped) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let b = UInt8(b1 + (b2 - b1) * positionClamped) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.robotRGB = [r, g, b] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.screenRGB = [r, g, b] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public init(red: UInt8, green: UInt8, blue: UInt8) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.robotRGB = [red, green, blue] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.screenRGB = [red, green, blue] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// MARK: Public | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -58,6 +45,24 @@ public extension Robot { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public var robotUiColor: UIColor { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
UIColor( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
red: Double(self.robotRGB[0]) / 255.0, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
green: Double(self.robotRGB[1]) / 255.0, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
blue: Double(self.robotRGB[2]) / 255.0, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
alpha: 1.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public var screenUiColor: UIColor { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
UIColor( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
red: Double(self.screenRGB[0]) / 255.0, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
green: Double(self.screenRGB[1]) / 255.0, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
blue: Double(self.screenRGB[2]) / 255.0, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
alpha: 1.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+48
to
+64
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// MARK: Private | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private enum ColorString: String { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -120,4 +125,4 @@ public extension Robot.Color { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
static let yellow: Robot.Color = .init(robot: 255, 255, 0, screen: 251, 232, 0) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// swiftlint:enable nesting identifier_name line_length | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// swiftlint:enable nesting |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pourquoi tu as besoin de passer par UIColor? pourquoi pas une simple struct?