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 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
|
{
*****************************************************************************
* MUIglobal.pas *
* -------------- *
* Global functions for easier implementation of different Systems *
* *
*****************************************************************************
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
unit MUIglobal;
{$mode objfpc}{$H+}
{$if defined(AROS) and defined(VER3_0)}
{$define FPC4AROS_VER3_FIXES}
{$endif}
interface
uses
Classes, SysUtils, exec, amigados, intuition, agraphics, timer,
{$if defined(CPU68) or defined(CPUPOWERPC)}
{$if defined(AMIGA68k) or defined(MorphOS)}
amigalib,
{$endif}
{$endif}
utility, mui, tagsparamshelper;
{$ifdef MorphOS}
// Missing in the fpc units
const
RPTAG_PenMode = $80000080;
RPTAG_FgColor = $80000081;
RPTAG_BgColor = $80000082;
{$endif}
{$ifdef AmigaOS4}
// Colorsetting tags are different to AROS/MorphOS
const
RPTAG_FGCOLOR = RPTAG_APENCOLOR;
RPTAG_BGCOLOR = RPTAG_BPENCOLOR;
RPTAG_PENMODE = TAG_IGNORE;
{$endif}
{$if defined(Amiga68k) and (FPC_FULLVERSION<30101)}
const
IECODE_MBUTTON = $6A;
IECODE_UP_PREFIX = $80;
MIDDLEUP = IECODE_MBUTTON + IECODE_UP_PREFIX;
MIDDLEDOWN = IECODE_MBUTTON;
{$endif}
type
THookFunc = function(Hook: PHook; Obj: PObject_; Msg: Pointer): LongInt;
function GetLCLTime: Int64;
procedure ConnectHookFunction(MUIField: PtrUInt; TriggerValue: PtrUInt; Obj: PObject_; Data: TObject; Hook: PHook; HookFunc: THookFunc);
procedure SetHook(var Hook: THook; Func: THookFunc; Data: Pointer);
{$ifndef AROS}
function CallHook(h: PHook; obj: APTR; params: array of NativeUInt): LongWord;
{$endif}
function CreateRastPortA: PRastPort; inline;
function CloneRastPortA(Rp: PRastPort): PRastPort; inline;
procedure FreeRastPortA(Rp: PRastPort); inline;
{$ifdef FPC4AROS_VER3_FIXES}
function DoMethod(Obj: PObject_; const Args: array of PtrUInt): IPTR;
function GetAttr(AttrID: LongWord; Object_: PObject_; var Storage: IPTR): LongWord; overload syscall IntuitionBase 109;
{$endif}
{$ifdef MorphOS}
function DoMethodA(obj : pObject_; msg1 : Pointer): longword; overload;
{$endif}
{$ifdef Amiga68k}
var
IntuitionBase: PIntuitionBase;
{$endif}
{$ifdef Amiga}
function DoMethodA(obj : pObject_; msg : APTR): ulong;
function DoMethod(obj: Pointer; params: array of DWord): LongWord; overload;
function DoMethod(obj: LongWord; params: array of DWord): LongWord; overload;
{$endif}
implementation
// *****************************************************
// Use local GetMsCount with fixed timer.device, faster
// because it's polled very often (CheckTimer)
// But its not threadsafe!
// can be removed if a threadvar version is implemented in RTL
var
Tr: PTimeRequest = nil;
procedure NewList (list: pList);
begin
with list^ do
begin
lh_Head := PNode(@lh_Tail);
lh_Tail := nil;
lh_TailPred := PNode(@lh_Head)
end;
end;
function CreateExtIO(Port: PMsgPort; Size: LongInt): PIORequest;
begin
Result := nil;
if Port <> nil then
begin
{$if FPC_FULLVERSION<30101}
Result := Exec.AllocMem(Size, MEMF_CLEAR);
{$else}
Result := ExecAllocMem(Size, MEMF_CLEAR);
{$endif}
if Result <> nil then
begin
Result^.io_Message.mn_Node.ln_Type := 7;
Result^.io_Message.mn_Length := Size;
Result^.io_Message.mn_ReplyPort := Port;
end;
end;
end;
procedure DeleteExtIO (IoReq: PIORequest);
begin
if IoReq <> nil then
begin
IoReq^.io_Message.mn_Node.ln_Type := $FF;
IoReq^.io_Message.mn_ReplyPort := PMsgPort(-1);
IoReq^.io_Device := PDevice(-1);
ExecFreeMem(IoReq, IoReq^.io_Message.mn_Length);
end
end;
function Createport(Name: PChar; Pri: LongInt): PMsgPort;
var
sigbit: ShortInt;
begin
Result := nil;
SigBit := AllocSignal(-1);
if SigBit = -1 then
Exit;
{$if FPC_FULLVERSION<30101}
Result := Exec.AllocMem(SizeOf(TMsgPort), MEMF_CLEAR);
{$else}
Result := ExecAllocMem(SizeOf(TMsgPort), MEMF_CLEAR);
{$endif}
if Result = nil then
begin
FreeSignal(SigBit);
Exit;
end;
with Result^ do
begin
if Assigned(Name) then
mp_Node.ln_Name := Name
else
mp_Node.ln_Name := nil;
mp_Node.ln_Pri := Pri;
mp_Node.ln_Type := 4;
mp_Flags := 0;
mp_SigBit := SigBit;
mp_SigTask := FindTask(nil);
end;
if Assigned(Name) then
AddPort(Result)
else
NewList(Addr(Result^.mp_MsgList));
end;
procedure DeletePort(Port: PMsgPort);
begin
if Port <> nil then
begin
if Port^.mp_Node.ln_Name <> nil then
RemPort(Port);
port^.mp_Node.ln_Type := $FF;
port^.mp_MsgList.lh_Head := PNode(-1);
FreeSignal(Port^.mp_SigBit);
ExecFreeMem(Port, SizeOf(TMsgPort));
end;
end;
function Create_Timer(TheUnit: LongInt): PTimeRequest;
var
TimerPort: PMsgPort;
begin
Result := nil;
TimerPort := CreatePort(nil, 0);
if TimerPort = nil then
Exit;
Result := PTimeRequest(CreateExtIO(TimerPort, SizeOf(TTimeRequest)));
if Result = Nil then
begin
DeletePort(TimerPort);
Exit;
end;
if OpenDevice(TIMERNAME, TheUnit, PIORequest(Result), 0) <> 0 then
begin
DeleteExtIO(pIORequest(Result));
DeletePort(TimerPort);
Result := nil;
end;
end;
Procedure Delete_Timer(WhichTimer: PTimeRequest);
var
WhichPort: PMsgPort;
begin
WhichPort := WhichTimer^.tr_Node.io_Message.mn_ReplyPort;
if assigned(WhichTimer) then
begin
CloseDevice(PIORequest(WhichTimer));
DeleteExtIO(PIORequest(WhichTimer));
end;
if Assigned(WhichPort) then
DeletePort(WhichPort);
end;
function get_sys_time(tv: PTimeVal): LongInt;
begin
Result := -1;
if not Assigned(Tr) then
Tr := Create_Timer(UNIT_MICROHZ);
// non zero return says error
if tr = nil then
Exit;
tr^.tr_node.io_Command := TR_GETSYSTIME;
DoIO(PIORequest(tr));
// structure assignment
tv^ := tr^.tr_time;
Result := 0;
end;
function GetLCLTime: Int64;
var
TV: TTimeVal;
begin
Get_Sys_Time(@TV);
Result := Int64(TV.TV_Secs) * 1000 + TV.TV_Micro div 1000;
end;
// End of LCLs own GetMsCount
//**************************************
{$ifdef MorphOS}
function DoMethodA(obj : pObject_; msg1 : Pointer): longword;
begin
Result := Amigalib.DoMethodA(LongWord(Obj), Msg1);
end;
{$endif}
{$undef SetHook}
{$ifdef CPU68}
{$define SetHook}
procedure SetHook(var Hook: THook; Func: THookFunc; Data: Pointer);
begin
{$if defined(VER3_0)}
Hook.h_Entry := @HookEntry; { is defined in AmigaLib unit now }
{$else}
Hook.h_Entry := @HookEntryPas; { is defined in AmigaLib unit now }
{$endif}
Hook.h_SubEntry := Func;
Hook.h_Data := Data;
end;
{$endif}
{$if defined(CPU86) or defined(CPUARM) or defined(CPU64)}
{$define SetHook}
procedure HookEntry(h: PHook; obj: PObject_; Msg: Pointer); cdecl;
var
Proc: THookFunc;
begin
Proc := THookFunc(h^.h_SubEntry);
Proc(h, obj, msg);
end;
procedure SetHook(var Hook: THook; Func: THookFunc; Data: Pointer);
begin
Hook.h_Entry := IPTR(@HookEntry);
Hook.h_SubEntry := IPTR(Func);
Hook.h_Data := Data;
end;
{$endif}
{$ifdef CPUPOWERPC}
{$ifdef MorphOS}
{$define SetHook}
procedure SetHook(var Hook: THook; Func: THookFunc; Data: Pointer);
{ This is MorphOS magic. Basically, CallHookPkt is designed to enter 68k code
(remember, MorphOS is 68k AmigaOS binary compatible!) so this TRAP just
redirects that call back to native PPC code. HookEntry is defined in
AmigaLib unit }
const
HOOKENTRY_TRAP: TEmulLibEntry = ( Trap: TRAP_LIB; Extension: 0; Func: @HookEntry );
begin
Hook.h_Entry := @HOOKENTRY_TRAP;
Hook.h_SubEntry := Func;
Hook.h_Data := Data;
end;
{$endif}
{$ifdef AMIGAOS4}
{$define SetHook}
procedure SetHook(var Hook: THook; Func: THookFunc; Data: Pointer);
begin
Hook.h_Entry := Func;
Hook.h_SubEntry := Func;
Hook.h_Data := Data;
end;
{$endif}
{$endif}
{$ifndef SetHook}
{$FATAL "SetHook not implemented for this platform"}
{$endif}
procedure ConnectHookFunction(MUIField: PtrUInt; TriggerValue: PtrUInt; Obj: PObject_; Data: TObject; Hook: PHook; HookFunc: THookFunc);
var
Para: TAParamList;
begin
SetHook(Hook^, HookFunc, Data);
Para.SetParams([
MUIM_Notify, MUIField, TriggerValue, MUIV_Notify_Self,
2,
MUIM_CallHook, NativeUInt(Hook),
0]);
//
DoMethodA(Obj, Para);
end;
function CallHook(h: PHook; obj: APTR; params: array of NativeUInt): LongWord;
begin
Result := CallHookPkt(h, obj, @Params[0]);
end;
function CreateRastPortA: PRastPort;
begin
{$if (not defined(AROS)) or defined(CPU64)}
Result := System.AllocMem(SizeOf(TRastPort));
InitRastPort(Result);
{$else}
Result := CreateRastPort;
{$endif}
end;
function CloneRastPortA(Rp: PRastPort): PRastPort;
begin
{$if (not defined(AROS)) or defined(CPU64)}
Result := System.AllocMem(SizeOf(TRastPort));
Move(Rp^, Result^, SizeOf(TRastPort));
{$else}
Result := CloneRastPort(Rp);
{$endif}
end;
procedure FreeRastPortA(Rp: PRastPort);
begin
{$if (not defined(AROS)) or defined(CPU64)}
FreeMem(Rp);
{$else}
FreeRastPort(Rp);
{$endif}
end;
{$ifdef FPC4AROS_VER3_FIXES}
function DoMethod(Obj: PObject_; const Args: array of PtrUInt): IPTR; inline;
begin
DoMethod := 0;
if obj = nil then
Exit;
DoMethod := CALLHOOKPKT_(PHook(OCLASS(Obj)), Obj, @Args);
end;
{$endif}
{$ifdef Amiga}
function DoMethodA(obj : pObject_; msg : APTR): ulong;
begin
if assigned(obj) then
begin
DoMethodA := CallHookPkt(@THook(OCLASS(obj)^.cl_Dispatcher), obj, msg);
end
else
DoMethodA := 0;
end;
function DoMethod(obj: Pointer; params: array of DWord): LongWord;
begin
Result := DoMethodA(obj, @params);
end;
function DoMethod(obj: LongWord; params: array of DWord): LongWord;
begin
Result := DoMethodA(Pointer(obj), @params);
end;
{$endif}
initialization
if not Assigned(Tr) then
Tr := create_timer(UNIT_MICROHZ);
{$ifdef Amiga68k}
IntuitionBase := _IntuitionBase;
{$endif}
finalization
if Assigned(Tr) then
Delete_timer(tr);
end.
|