- Posts: 62
- Thank you received: 2
- Forum
- CodeTyphon Studio
- CodeTyphon Studio Components and Libraries
- Scripting Development
- Diff between Titan and Pascal scriptting engines?
×
Components and Libraries for Scripting Development, discussions, problems and suggestions
Question Diff between Titan and Pascal scriptting engines?
- Alexandr
- Topic Author
- Offline
- Junior Member
-
Less
More
5 years 9 months ago #7657
by Alexandr
Diff between Titan and Pascal scriptting engines? was created by Alexandr
Greetings!
What different between TitanScript and PascalScript?
What different between TitanScript and PascalScript?
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
5 years 9 months ago - 5 years 9 months ago #7659
by Sternas Stefanos
PilotLogic Architect and Core Programmer
Replied by Sternas Stefanos on topic Diff between Titan and Pascal scriptting engines?
Sir
both are Scripts Engines
Titan has more abilities but has some problems with 64bit CPUs and don't support arm CPUs yet
Pascal script support and arm CPUs
Titan Script Engine need work
both are Scripts Engines
Titan has more abilities but has some problems with 64bit CPUs and don't support arm CPUs yet
Pascal script support and arm CPUs
Titan Script Engine need work
PilotLogic Architect and Core Programmer
Last edit: 5 years 9 months ago by Sternas Stefanos.
Please Log in or Create an account to join the conversation.
- TheWolf
- Offline
- Junior Member
-
Less
More
- Posts: 29
- Thank you received: 0
5 years 4 weeks ago #9328
by TheWolf
Replied by TheWolf on topic Diff between Titan and Pascal scriptting engines?
I've seen that somebody in the chat has asked what the exact differences are between TitanScript and PascalScript. I'm interested, too, what the exact differences are between both.
P.S. I can confirm the compilation bug I can't compile TitanScript IDE Demo,too.
Compilation tested on Ubuntu 14.04 64Bit, Unity Desktop, Kernel 4.4.0-040400-generic
P.S. I can confirm the compilation bug I can't compile TitanScript IDE Demo,too.
Compilation tested on Ubuntu 14.04 64Bit, Unity Desktop, Kernel 4.4.0-040400-generic
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
5 years 4 weeks ago - 5 years 4 weeks ago #9330
by Sternas Stefanos
PilotLogic Architect and Core Programmer
Replied by Sternas Stefanos on topic Diff between Titan and Pascal scriptting engines?
Thanks Sir
we will fix this
PS: please test and these samples from LAB CT 5.8 CodeOcean
we will fix this
PS: please test and these samples from LAB CT 5.8 CodeOcean
PilotLogic Architect and Core Programmer
Last edit: 5 years 4 weeks ago by Sternas Stefanos.
Please Log in or Create an account to join the conversation.
- TheWolf
- Offline
- Junior Member
-
Less
More
- Posts: 29
- Thank you received: 0
5 years 4 weeks ago #9332
by TheWolf
Replied by TheWolf on topic Diff between Titan and Pascal scriptting engines?
Now I can compile TitanScript IDE Demo. But I get nearly by all example scripts Access violation in the TitanIDE or the IDE Crash Instantly
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
5 years 4 weeks ago #9333
by Sternas Stefanos
PilotLogic Architect and Core Programmer
Replied by Sternas Stefanos on topic Diff between Titan and Pascal scriptting engines?
Is 64bit problem, for 32bit target all work ok
we must find the problem for 64bit targets
we must find the problem for 64bit targets
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- TheWolf
- Offline
- Junior Member
-
Less
More
- Posts: 29
- Thank you received: 0
5 years 4 weeks ago - 5 years 4 weeks ago #9334
by TheWolf
Replied by TheWolf on topic Diff between Titan and Pascal scriptting engines?
Ok thanks for your help.
one more question is Titanscript runnable on 32Bit arm for example the raspberrypi?
one more question is Titanscript runnable on 32Bit arm for example the raspberrypi?
Last edit: 5 years 4 weeks ago by TheWolf.
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
5 years 4 weeks ago - 5 years 4 weeks ago #9335
by Sternas Stefanos
PilotLogic Architect and Core Programmer
Replied by Sternas Stefanos on topic Diff between Titan and Pascal scriptting engines?
The problem with pl_Titanscript is that use
assebly routines, and this is the problem with arm
look at
components\pl_TitanScript\source\inc\Base_tScripter_Call.inc file
we want help with this...
assebly routines, and this is the problem with arm
look at
components\pl_TitanScript\source\inc\Base_tScripter_Call.inc file
we want help with this...
PilotLogic Architect and Core Programmer
Last edit: 5 years 4 weeks ago by Sternas Stefanos.
Please Log in or Create an account to join the conversation.
- TheWolf
- Offline
- Junior Member
-
Less
More
- Posts: 29
- Thank you received: 0
5 years 4 weeks ago - 5 years 4 weeks ago #9336
by TheWolf
Replied by TheWolf on topic Diff between Titan and Pascal scriptting engines?
I have never worked with Assambly, i dont think i can help there.
I'm building crosscompiler 32Bit at the moment. When the compiler is ready, I try it again with them and report here.
P.S. Cross compile doesn't work the linker crashes
I'm building crosscompiler 32Bit at the moment. When the compiler is ready, I try it again with them and report here.
P.S. Cross compile doesn't work the linker crashes
Last edit: 5 years 4 weeks ago by TheWolf.
Please Log in or Create an account to join the conversation.
- Adrijan
- Offline
- New Member
-
Less
More
- Posts: 7
- Thank you received: 0
7 months 4 days ago #15118
by Adrijan
Replied by Adrijan on topic Diff between Titan and Pascal scriptting engines?
Hi,
I use TitanScript with Typhon64 IDE v6.4
Compiled SimpleIDE from CodeOcean\pl_TitanScript and I got Access violation whenewer I ty to use Integers...
Program test;
begin
Write(StrToInt(10));
end.
ERROR : Access violation At pos 1 : 0 : 23
32-bit version works fine.
Should I switch to Pascal Script or newer CT or am I doing something wrong?
Thanks
I use TitanScript with Typhon64 IDE v6.4
Compiled SimpleIDE from CodeOcean\pl_TitanScript and I got Access violation whenewer I ty to use Integers...
Program test;
begin
Write(StrToInt(10));
end.
ERROR : Access violation At pos 1 : 0 : 23
32-bit version works fine.
Should I switch to Pascal Script or newer CT or am I doing something wrong?
Thanks
Please Log in or Create an account to join the conversation.
- Matis A.
-
- Away
- Moderator
-
7 months 4 days ago - 7 months 4 days ago #15119
by Matis A.
PilotLogic Core Programmer
Replied by Matis A. on topic Diff between Titan and Pascal scriptting engines?
pl_TitanScript has problem on 64bits OSes.
You can use (CT 7.20):
-pl_PascalScript
-pl_Lape
or
the latest CT Script package
-pl_MagicScript, support ALL Host and Target CPU-OS-Platform.
You can use (CT 7.20):
-pl_PascalScript
-pl_Lape
or
the latest CT Script package
-pl_MagicScript, support ALL Host and Target CPU-OS-Platform.
PilotLogic Core Programmer
Last edit: 7 months 4 days ago by Matis A..
The following user(s) said Thank You: Adrijan
Please Log in or Create an account to join the conversation.