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
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Identify network devices
by
LemonParty
[
Today
at 08:11:37 am]
TurboBird for FireBird 5
by
laguna
[
Today
at 07:45:04 am]
Bugs caused by the weathe...
by
dsiders
[
Today
at 04:40:59 am]
[Solved[ How to define th...
by
jamie
[
Today
at 02:33:13 am]
Lazarus Bugfix Release 4....
by
moinsen
[
Today
at 12:57:37 am]
Lazarus IDE plugin that i...
by
BSaidus
[August 10, 2026, 11:21:20 pm]
Is it timing of a dataset...
by
1HuntnMan
[August 10, 2026, 09:41:05 pm]
Dataset EnableControls/Di...
by
1HuntnMan
[August 10, 2026, 09:31:58 pm]
Application triggers mess...
by
JanRoza
[August 10, 2026, 09:29:03 pm]
[SOLVED] TTL Record Count...
by
1HuntnMan
[August 10, 2026, 09:21:46 pm]
TFPHTTPServer DDoS protec...
by
Warfley
[August 10, 2026, 07:58:41 pm]
Gtk3 becomes default widg...
by
PascalDragon
[August 10, 2026, 07:44:48 pm]
how to connect to mariadb...
by
eldonfsr
[August 10, 2026, 07:38:05 pm]
Is it possible to communi...
by
Warfley
[August 10, 2026, 07:37:35 pm]
How get listy of FieldDat...
by
eldonfsr
[August 10, 2026, 06:19:37 pm]
PasGuard – Code Protectio...
by
pasguard
[August 10, 2026, 05:32:53 pm]
TyControls: a custom-draw...
by
Antek
[August 10, 2026, 05:20:29 pm]
Diagonal Lines and Spaced...
by
Boleeman
[August 10, 2026, 04:29:07 pm]
[UPDATE] SedaiBasic - SSA...
by
Gigatron
[August 10, 2026, 04:00:12 pm]
Unleashed Pascal (async/a...
by
creaothceann
[August 10, 2026, 02:24:53 pm]
MR - DebuggerIntf for ter...
by
Martin_fr
[August 10, 2026, 01:50:18 pm]
New charts
by
JD
[August 10, 2026, 12:13:34 pm]
PIX (Picture in Hexadecim...
by
ADMGNS
[August 10, 2026, 11:15:06 am]
Fpcupdeluxe
by
DonAlfredo
[August 10, 2026, 10:22:45 am]
Star Wars Galaxian
by
PierceNg
[August 10, 2026, 10:10:44 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Alias / Absolute (avoid variants) inside Records? (Read 1322 times)
trn76
New Member
Posts: 40
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: 2510
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
Hero Member
Posts: 794
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
Administrator
Hero Member
Posts: 12980
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