-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d257f8e
commit 2fd46d3
Showing
9 changed files
with
89 additions
and
122 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file modified
BIN
+191 Bytes
(100%)
Build/Components/4DPop Macros.4dbase/Contents/4DPop Macros.4DZ
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<plist> | ||
|
||
<dict> | ||
<key>CFBundleName</key> | ||
<string>4DPop Macros</string> | ||
<key>CFBundleVersion</key> | ||
<string>295</string> | ||
<key>NSHumanReadableCopyright</key> | ||
<string>©vdl 2009-2024</string> | ||
<key>CFBundleGetInfoString</key> | ||
<string>20R8</string> | ||
<key>CFBundleLongVersionString</key> | ||
<string>20R8 (294)</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>20R8</string> | ||
<key>CFBundleDisplayName</key> | ||
<string>4DPop Macros</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string></string> | ||
<key>NSHumanReadableCopyright</key> | ||
<string></string> | ||
<key>CFBundleVersion</key> | ||
<string></string> | ||
</dict> | ||
|
||
</plist> |
Binary file modified
BIN
-35.3 KB
(99%)
Build/Components/4DPop Macros.4dbase/Contents/Libraries/lib4d-arm64.dylib
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
//%attributes = {"invisible":true,"preemptive":"capable"} | ||
// ---------------------------------------------------- | ||
// Méthode : str_gLon_Hex_To_Long | ||
// Alias zRes_Hex_en_décimal | ||
// Created 3/09/98 par Vincent | ||
// ---------------------------------------------------- | ||
// Description | ||
// | ||
// ---------------------------------------------------- | ||
C_LONGINT:C283($0) | ||
C_TEXT:C284($1) | ||
// ---------------------------------------------------- | ||
// Méthode : str_gLon_Hex_To_Long | ||
// Alias zRes_Hex_en_décimal | ||
// Created 3/09/98 par Vincent | ||
// ---------------------------------------------------- | ||
// Description | ||
// | ||
// ---------------------------------------------------- | ||
var $0 : Integer | ||
var $1 : Text | ||
|
||
C_LONGINT:C283($Lon_ASCII;$Lon_End_i;$Lon_i) | ||
C_REAL:C285($Num_Result) | ||
C_TEXT:C284($a80_Hexa) | ||
var $Lon_ASCII; $Lon_End_i; $Lon_i : Integer | ||
var $Num_Result : Real | ||
var $a80_Hexa : Text | ||
|
||
If (False:C215) | ||
C_LONGINT:C283(str_gLon_Hex_To_Long ;$0) | ||
C_TEXT:C284(str_gLon_Hex_To_Long ;$1) | ||
C_LONGINT:C283(str_gLon_Hex_To_Long; $0) | ||
C_TEXT:C284(str_gLon_Hex_To_Long; $1) | ||
End if | ||
|
||
$a80_Hexa:=Uppercase:C13($1) | ||
$Lon_End_i:=Length:C16($a80_Hexa) | ||
|
||
For ($Lon_i;$Lon_End_i;1;-1) | ||
For ($Lon_i; $Lon_End_i; 1; -1) | ||
|
||
$Lon_ASCII:=Character code:C91($a80_Hexa[[$Lon_i]]) | ||
|
||
Case of | ||
|
||
//…………………………………………………………… | ||
//…………………………………………………………… | ||
: (($Lon_ASCII>47)\ | ||
& ($Lon_ASCII<58)) //0..9 | ||
|
||
$Num_Result:=$Num_Result+(($Lon_ASCII-48)*(16^($Lon_End_i-$Lon_i))) | ||
|
||
//…………………………………………………………… | ||
//…………………………………………………………… | ||
: (($Lon_ASCII>64)\ | ||
& ($Lon_ASCII<71)) //A..F | ||
|
||
$Num_Result:=$Num_Result+(($Lon_ASCII-55)*(16^($Lon_End_i-$Lon_i))) | ||
|
||
//…………………………………………………………… | ||
//…………………………………………………………… | ||
Else //x de Ox de 4D ou autre bidule… | ||
|
||
//…Arrêt de la conversion | ||
//…Arrêt de la conversion | ||
$Lon_i:=0 | ||
|
||
//…………………………………………………………… | ||
//…………………………………………………………… | ||
End case | ||
End for | ||
|
||
$0:=Int:C8($Num_Result) | ||
$0:=Int:C8($Num_Result) |