Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Free Pascal
»
General
(Moderators:
FPK
,
Tomas Hajny
) »
Alias / Absolute (avoid variants) inside Records?
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
IRC channel
Latest SVN
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
How to build with MBF fra...
by
MiR
[
Today
at 03:44:33 pm]
GTK2 is now EOL :(
by
af0815
[
Today
at 03:43:30 pm]
Differences between compi...
by
z0rr0
[
Today
at 03:25:47 pm]
Unit name problem
by
MarkMLl
[
Today
at 03:22:30 pm]
SigSeg in TQtWidget.GetWi...
by
cdbc
[
Today
at 03:11:19 pm]
Can BaseUnix works for Wi...
by
MarkMLl
[
Today
at 01:28:25 pm]
Windows API test programs...
by
440bx
[
Today
at 12:28:49 pm]
TLineSeries display every...
by
wp
[
Today
at 12:23:10 pm]
Problem with OnPaint auto...
by
circular
[
Today
at 12:19:59 pm]
Generic class and visibil...
by
PascalDragon
[
Today
at 11:50:44 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Alias / Absolute (avoid variants) inside Records? (Read 298 times)
trn76
New Member
Posts: 39
Alias / Absolute (avoid variants) inside Records?
«
on:
October 30, 2020, 04:39:38 pm »
How can I use Alias / Absolute (avoid variant in records) inside Records? ...or some other neat solution, that would make my day now that I've had some more coffe'!
Code: Pascal
[Select]
[+]
[-]
..
type
Thead_info
=
packed
array
[
0
..
10
-
1
]
of
cuchar
;
Thead_archive
=
packed
array
[
0
..
31
-
1
]
of
cuchar
;
Thead_filename
=
packed
array
[
0
..
256
-
1
]
of
cuchar
;
Thead_comment
=
packed
array
[
0
..
256
-
1
]
of
cuchar
;
PPack
=
^
TPack
;
TPack
=
record
crc
:
cuint
;
sum
:
cuint
;
pack_size
:
cuint
;
unpack_size
:
cuint
;
mode
:
cint
;
year
:
cuint
;
month
:
cuint
;
day
:
cuint
;
hour
:
cuint
;
minute
:
cuint
;
second
:
cuint
;
attributes
:
cuint8
;
//pack_mode : cuint8; // <--- replace this
head_info
:
Thead_info
;
head_archive
:
Thead_archive
;
head_filename
:
Thead_filename
;
head_comment
:
Thead_comment
;
total_pack
:
cuint
;
total_unpack
:
cuint
;
total_files
:
cuint
;
merge_size
:
cuint
;
filFile
:
file
;
filName
:
string
;
filError
:
cuint
;
filList
:
PStringArray
;
nodeList
:
Pnode
;
pack_mode
:
cuint8
absolute
head_archive
[
11
]
;
// <--- with this ?
end
;
Yes I could do this:
Code: Pascal
[Select]
[+]
[-]
procedure
something
;
var
pack
:
TPack
;
mode
:
cuint8
;
begin
// access
mode
:
=
pack
.
head_archive
[
11
]
and
$1F
;
// but this is cleaner:
mode
:
=
pack
.
pack_mode
and
$1F
;
end
;
...hope you get my drift
Logged
ASerge
Hero Member
Posts: 1706
Re: Alias / Absolute (avoid variants) inside Records?
«
Reply #1 on:
October 30, 2020, 06:44:45 pm »
Code: Pascal
[Select]
[+]
[-]
{$MODE OBJFPC}
{$MODESWITCH ADVANCEDRECORDS}
type
TheadArchive
=
array
[
0
..
31
-
1
]
of
UInt8
;
TPack
=
record
strict
private
function
GetPackMode
:
UInt8
;
inline
;
public
Attributes
:
Int8
;
HeadArchive
:
TheadArchive
;
filError
:
Cardinal
;
property
PackMode
:
UInt8
read
GetPackMode
;
end
;
function
TPack
.
GetPackMode
:
UInt8
;
begin
Result
:
=
HeadArchive
[
11
]
;
end
;
var
Pack
:
TPack
;
Mode
:
UInt8
;
begin
Mode
:
=
Pack
.
HeadArchive
[
11
]
and
$1F
;
Mode
:
=
Pack
.
PackMode
and
$1F
;
end
.
Code: ASM
[Select]
[+]
[-]
#
[
29
]
Mode
:
= Pack
.
HeadArchive
[
11
]
and
$
1F
;
movw U_
$
P
$
PROJECT1_
$$
_PACK
+
12
(
%
rip
)
,%
ax
andw
$
31
,%
ax
# Var Mode located
in
register
al
.
Ll6
:
#
[
30
]
Mode
:
= Pack
.
PackMode
and
$
1F
;
movw U_
$
P
$
PROJECT1_
$$
_PACK
+
12
(
%
rip
)
,%
ax
andw
$
31
,%
ax
# Var Mode located
in
register
al
Logged
bytebites
Sr. Member
Posts: 364
Re: Alias / Absolute (avoid variants) inside Records?
«
Reply #2 on:
October 30, 2020, 06:48:53 pm »
Code: Pascal
[Select]
[+]
[-]
{$ModeSwitch advancedrecords}
type
TPack
=
record
....
filError
:
cuint
;
filList
:
PStringArray
;
nodeList
:
Pnode
;
//pack_mode : cuint8; absolute head_archive[11]; // <--- with this ?
function
packmode
:
cuint8
;
end
;
...
function
TPack
.
packmode
:
cuint8
;
begin
result
:
=
pack_size
and
$1f
;
end
;
Logged
marcov
Global Moderator
Hero Member
Posts: 9003
FPC developer.
Re: Alias / Absolute (avoid variants) inside Records?
«
Reply #3 on:
October 30, 2020, 07:16:14 pm »
property packmode : cuint8 read head_archive[11];
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Free Pascal
»
General
(Moderators:
FPK
,
Tomas Hajny
) »
Alias / Absolute (avoid variants) inside Records?
TinyPortal
© 2005-2018