FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
livecode/util/encode_data.pl at develop · livecode/livecode · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
livecode
/
livecode
Public archive
Notifications
You must be signed in to change notification settings
Fork
223
Star
517
Code
Pull requests
189
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
livecode
/
util
/
encode_data.pl
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
48 lines (41 loc) · 1019 Bytes
Breadcrumbs
livecode
/
util
/
encode_data.pl
Copy path
File metadata and controls
executable file
·
48 lines (41 loc) · 1019 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#
!/usr/bin/env perl
use
warnings;
#
Incoming arguments
my
$sourceFile
=
$ARGV
[0];
my
$destFile
=
$ARGV
[1];
my
$varName
=
$ARGV
[2];
#
Read in the source file
open
INPUT,
"
<
$sourceFile
"
or
die
"
Could not open source file
\"
$sourceFile
\"
:
$!
"
;
binmode
INPUT;
my
$input
=
do
{
local
(
$/
) ; <INPUT> } ;
close
INPUT;
#
Split into bytes
my
@bytes
=
unpack
(
'
C*
'
,
$input
);
#
Convert to a list of uint8_t values appropriate for an array in C
my
$cArray
=
"
"
;
my
$index
;
my
$length
=
scalar
@bytes
;
for
(
$index
= 0;
$index
<
$length
;
$index
++)
{
$cArray
.=
sprintf
(
"
0x%02x,
"
,
$bytes
[
$index
]);
if
(
$index
% 16 == 15)
{
$cArray
.=
"
\n\t
"
;
}
}
#
Tidy up the output
if
(
$index
% 16 == 0)
{
substr
(
$cArray
, -4) =
"
"
;
}
else
{
substr
(
$cArray
, -2) =
"
"
;
}
#
Write to the output file
open
OUTPUT,
"
>
$destFile
"
or
die
"
Could not open output file
\"
$destFile
\"
:
$!
"
;
print
OUTPUT
"
alignas(16) unsigned char
${varName}
[] =
\n
{
\n\t
$cArray
\n
};
\n
"
;
print
OUTPUT
"
unsigned int
${varName}
_length =
$length
;
\n
"
;
close
OUTPUT;
Back
|
FazBrowse Home
|
New Git URL