-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathuntERDMidiCommon.pas
190 lines (177 loc) · 5.06 KB
/
untERDMidiCommon.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
unit untERDMidiCommon;
interface
uses
System.SysUtils, System.Classes, Winapi.Windows, Vcl.Controls, Vcl.Graphics,
Winapi.Messages, System.Types;
function Brighten(Color: TColor; Factor: Integer): TColor;
function Darken(Color: TColor; Factor: Integer): TColor;
implementation
const
MaxFactor = 100;
// Factor 0..MaxFactor
function Brighten(Color: TColor; Factor: Integer): TColor;
begin
Color := ColorToRGB(Color);
if 0 < Factor then // 0 = no changes
begin
if Factor > MaxFactor then
Factor := MaxFactor;
Result := ( (((255 - ((Color shr 16) and $FF)) * Factor)
div MaxFactor)) shl 8;
Result := (Result or (((255 - ((Color shr 8) and $FF)) * Factor)
div MaxFactor)) shl 8;
Result := (Result or (((255 - ( Color and $FF)) * Factor)
div MaxFactor));
Result := Color + Result;
end
else
Result := Color;
end;
// Factor 0..MaxFactor
function Darken(Color: TColor; Factor: Integer): TColor;
begin
Color := ColorToRGB(Color);
if 0 < Factor then // 0 = no changes
begin
if Factor > MaxFactor then
Factor := MaxFactor;
Result := ( ((((Color shr 16) and $FF) * Factor) div
MaxFactor)) shl 8;
Result := (Result or ((((Color shr 8) and $FF) * Factor) div
MaxFactor)) shl 8;
Result := (Result or ((( Color and $FF) * Factor) div
MaxFactor));
Result := Color - Result;
end
else
Result := Color;
end;
// Factor -MaxFactor..MaxFactor
function ChangeBrightness(Color: TColor; Factor: Integer): TColor;
var
DstValue: Integer;
begin
Color := ColorToRGB(Color);
if Factor <> 0 then // 0 = no changes
begin
if Factor > 0 then
begin
DstValue := 255;
end
else
begin
DstValue := 0;
Factor := -Factor;
end;
if Factor > MaxFactor then
Factor := MaxFactor;
Result := ( (((DstValue - ((Color shr 16) and $FF)) *
Factor) div MaxFactor)) shl 8;
Result := (Result + (((DstValue - ((Color shr 8) and $FF)) *
Factor) div MaxFactor)) shl 8;
Result := (Result + (((DstValue - ( Color and $FF)) *
Factor) div MaxFactor));
Result := Color + Result;
end
else
Result := Color;
end;
// Value: 0..255 RGB value
// CurrentLum: 0..510, current luminance
// NewLum: 0..510, destination luminance
function SetLuminanceToRGBValue(Value, CurrentLum, NewLum: Integer):
Byte;
begin
if (0 <= Value) and (Value <= 255) and (0 <= CurrentLum) and
(CurrentLum <= 510) and (0 <= NewLum) and (NewLum <= 510) then
begin
case CurrentLum of
1..255:
begin
if NewLum <= 255 then // lower segment
Result := (Value * NewLum) div CurrentLum
else // lower -> upper segment
Result := NewLum - 255 + (Value * (510 - NewLum)) div
CurrentLum;
end;
256..509:
begin
Value := 255 - Value;
CurrentLum := 510 - CurrentLum;
if NewLum <= 255 then // upper -> lower segment
Result := NewLum - (Value * NewLum) div CurrentLum
else // upper segment
Result := 255 - (Value * (510 - NewLum)) div CurrentLum;
end;
else // black or white
Result := NewLum div 2;
end;
end
else // wrong value for Value, CurrentLum or NewLum
Result := Value;
end;
// for fast calculation, you must precalculate CurrentLum
// and convert Color to RGB
function SetLuminanceToRGBValues(Color: TColor; CurrentLum, NewLum:
Integer): TColor;
begin
Result := SetLuminanceToRGBValue((Color shr 16) and $FF, CurrentLum,
NewLum) shl 8;
Result := (Result or SetLuminanceToRGBValue((Color shr 8) and $FF,
CurrentLum, NewLum)) shl 8;
Result := Result or SetLuminanceToRGBValue(Color and $FF, CurrentLum,
NewLum);
end;
// Result 0..510
function RGBToLuminance(Color: TColor): Integer;
var
R, G, B: Integer;
Max, Min : Integer;
begin
Color := ColorToRGB(Color);
R := Color and $FF;
Min := R;
Max := R;
Color := Color shr 8;
G := Color and $FF;
if Min > G then
Min := G;
if Max < G then
Max := G;
Color := Color shr 8;
B := Color and $FF;
if Min > B then
Min := B;
if Max < B then
Max := B;
Result := Min + Max;
end;
function SetLuminanceToRGB(Color: TColor; NewLum: Integer): TColor;
var
R, G, B: Integer;
Max, Min : Integer;
CurrentLum: Integer;
begin
Color := ColorToRGB(Color);
R := Color and $FF;
Min := R;
Max := R;
Color := Color shr 8;
G := Color and $FF;
if Min > G then
Min := G;
if Max < G then
Max := G;
Color := Color shr 8;
B := Color and $FF;
if Min > B then
Min := B;
if Max < B then
Max := B;
CurrentLum := Min + Max;
Result := SetLuminanceToRGBValue(B, CurrentLum, NewLum) shl 8;
Result := (Result or SetLuminanceToRGBValue(G, CurrentLum, NewLum))
shl 8;
Result := Result or SetLuminanceToRGBValue(R, CurrentLum, NewLum);
end;
end.