-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPII.PAS
executable file
·228 lines (205 loc) · 6.06 KB
/
PII.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
unit Pii;
interface
uses OPL3;
const DefaultInstr : Polana4Inst = (
Name : '';
NumOp : 0;
NoteSel : 0;
TremDepth : 0;
VibDepth : 0;
FeedType : 2;
PercMode : 0;
PercChan : 0;
Ops: ((Opers:
((Tremolo : 0;
Vibrato : 0;
Sus : 0;
KSR : 0;
FMul : 0;
KSL : 0;
Level : 0;
Attack : 0;
Decay : 0;
Sustain : 0;
Release : 0;
WaveForm : 0),
(Tremolo : 0;
Vibrato : 0;
Sus : 0;
KSR : 0;
FMul : 0;
KSL : 0;
Level : 0;
Attack : 0;
Decay : 0;
Sustain : 0;
Release : 0;
WaveForm : 0));
FeedFact : 0;
RL : 0),
(Opers:
((Tremolo : 0;
Vibrato : 0;
Sus : 0;
KSR : 0;
FMul : 0;
KSL : 0;
Level : 0;
Attack : 0;
Decay : 0;
Sustain : 0;
Release : 0;
WaveForm : 0),
(Tremolo : 0;
Vibrato : 0;
Sus : 0;
KSR : 0;
FMul : 0;
KSL : 0;
Level : 0;
Attack : 0;
Decay : 0;
Sustain : 0;
Release : 0;
WaveForm : 0));
FeedFact : 0;
RL : 0)));
type Kanal = object
MenoKanalu : string;
ZOp : Polana4Inst;
Hrajuci : boolean;
Frekvencia : real;
Oktava : byte;
procedure Aktivuj;
procedure Init(MK:string;Inst:Polana4Inst);
procedure SetSound;
procedure ZrusKanal;
procedure SetOct(oct:byte);
procedure SetFreq(fr:real);
procedure PlayIt;
procedure StopIt;
end;
procedure InitChanells;
procedure ZrusChanells;
function Save4Inst(filename:string):byte;
function Load4Inst(filename:string):byte;
var Kanals : array [1..6] of Kanal;
AktualKanal:byte;
{ Error : integer;}
{ FileName : string;}
{ procedure Save4Inst;
procedure Load4Inst;}
{procedure Hybaj(fn:string;Name:string);}
implementation
procedure Kanal.Init(MK:string;Inst:Polana4Inst);
begin
MenoKanalu:=MK;
ZOp:=Inst;
Hrajuci := false;
Aktivuj;
end;
procedure Kanal.Aktivuj;
begin
if not Act4opChanell(MenoKanalu) then halt;
end;
procedure Kanal.SetFreq(fr:real);
begin
frekvencia := fr;
end;
procedure Kanal.SetOct(oct:byte);
begin
Oktava:=oct;
end;
procedure Kanal.PlayIt;
begin
Play4Sound(Menokanalu,Frekvencia,Oktava);
Hrajuci:=true;
end;
procedure Kanal.StopIt;
begin
Stop4Sound(Menokanalu);
Hrajuci:=false;
end;
procedure Kanal.ZrusKanal;
begin
Hrajuci:=false;
StopIt;
if not Deact4OpChanell(MenoKanalu) then ;
end;
function Save4Inst(filename:string):byte;
var f : file;
Hed : PiHeader;
M : word;
P1: pointer;
begin
Save4Inst := 0;
with Hed do begin
ID := 'Pi ';
Res1 := 0;
Res2 := 0;
InstNum := 1;
end;
P1:=Ptr(Seg(Hed),Ofs(Hed)+1);
assign(f, filename);rewrite(f,1);
with Hed do begin
Blockwrite(f,P1^,3);
Blockwrite(f,Res1,1);
Blockwrite(f,Res2,1);
Blockwrite(f,InstNum,1);
end;
Blockwrite(f,Kanals[AktualKanal].Zop,76,M);
close(f);
end;
function Load4Inst(filename:string):byte;
var f : file;
Hed : array[1..6] of byte;
label koniec;
begin
Load4Inst:=0;
assign(f, filename);reset(f,1);
Blockread(f,Hed,6);
if char(Hed[1])+char(Hed[2])+char(Hed[3]) <> 'Pi ' then
begin
Load4Inst:=1;
goto koniec;
end;
blockread(f,Kanals[AktualKanal].ZOp,76);
koniec:
close(f);
end;
procedure Kanal.SetSound;
begin
Set4Sound(Menokanalu, Zop);
end;
procedure InitChanells;
var Meno : string;
prem : byte;
begin
for prem := 1 to 6 do begin
str(prem,Meno);
Kanals[prem].Init(Meno, DefaultInstr);
AktualKanal:=1;
end;
end;
procedure ZrusChanells;
var prem : byte;
begin
for prem := 1 to 6 do begin
Kanals[prem].StopIt;
Kanals[prem].ZrusKanal;
end;
end;
{procedure Hybaj(fn:string;Name:string);
begin
ZV.filename:=fn;
ZV.menokanalu := Name;
ZV.frekvencia:=440;
ZV.Aktivuj;
ZV.Load4Inst;
ZV.SetSound;
ZV.Playit;
readln;
ZV.StopIt;
ZV.ZrusKanal;
end;}
end.