FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
livecode/util/encode_source.pl at develop · livecodeali/livecode · GitHub
livecodeali
/
livecode
Public
forked from
livecode/livecode
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
livecode
/
util
/
encode_source.pl
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
46 lines (36 loc) · 870 Bytes
Breadcrumbs
livecode
/
util
/
encode_source.pl
Copy path
File metadata and controls
executable file
·
46 lines (36 loc) · 870 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
#
!/usr/bin/env perl
use
warnings;
use
File::Basename;
#
Incoming arguments
my
$sourceFile
=
$ARGV
[0];
my
$destFile
=
$ARGV
[1];
#
Work around gyp issue on windows where it is
#
sometimes too eager in relativising paths
my
$varName
= basename(
$ARGV
[2]);
#
! /usr/bin/revolution -ui
#
$1 = source file
#
$2 = dst file
#
$3 = var name
#
Read in the source file
open
INPUT,
"
<
$sourceFile
"
or
die
"
Could not open source file
\"
$sourceFile
\"
:
$!
"
;
my
@lines
= <INPUT>;
close
INPUT;
#
Write to the output file
open
OUTPUT,
"
>
$destFile
"
or
die
"
Could not open output file
\"
$destFile
\"
:
$!
"
;
print
OUTPUT
"
const char *
${varName}
[] =
\n
{
\n
"
;
foreach
my
$line
(
@lines
)
{
if
((
length
$line
) == 0)
{
next
;
}
$line
=~
s
/
\\
/
\\\\
/
g
;
$line
=~
s
/
\"
/
\\
"
/
g
;
$line
=~
s
/
\n
/
\\
n
/
g
;
print
OUTPUT
"
\t\"
$line
\"
,
\n
"
;
}
print
OUTPUT
"
\t
0
\n
"
;
print
OUTPUT
"
};
\n
"
;
close
OUTPUT;
Back
|
FazBrowse Home
|
New Git URL