Gamestudio Links
Zorro Links
Newest Posts
loading historical data 1st time
by AndrewAMD. 04/14/23 12:54
Trade at bar open
by juanex. 04/13/23 19:43
Bug in Highpass2 filter
by rki. 04/13/23 09:54
Adding Limit Orders For IB
by scatters. 04/11/23 16:16
FisherN
by rki. 04/11/23 08:38
AUM Magazine
Latest Screens
SHADOW (2014)
DEAD TASTE
Tactics of World War I
Hecknex World
Who's Online Now
2 registered members (Grant, AndrewAMD), 911 guests, and 9 spiders.
Key: Admin, Global Mod, Mod
Newest Members
rki, FranzIII, indonesiae, The_Judge, storrealba
18919 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Lite-C Compiler and Compiler Output #365679
03/28/11 14:17
03/28/11 14:17
Joined: Dec 2008
Posts: 1,218
Germany
Rackscha Offline OP
Serious User
Rackscha  Offline OP
Serious User

Joined: Dec 2008
Posts: 1,218
Germany
Hello,
Iam currently thinking about creating a Lite-C IDE. I have some question on the compiler.
(I have Comercial)

-Can i Hide the Compilewindow in devversion?
- I know its possible to output the compiler to a txt(which command? cant find it anymore), but is it posssible to access it with Windows-Pipes too?
- and is it possible to compile without executing the code?

Greets
Rackscha

Last edited by Rackscha; 03/28/11 14:18.

MY Website with news of my projects:
(for example my current
Muliplayer Bomberman,
GenesisPrecompiler for LiteC
and TileMaster, an easy to use Tile editor)
Sparetime-Development

Re: Lite-C Compiler and Compiler Output [Re: Rackscha] #365681
03/28/11 14:31
03/28/11 14:31
Joined: Jul 2000
Posts: 27,935
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,935
Frankfurt
You can hide the startup window with -nwnd, and can print the compiler messages into the acklog file with -diag. For compiling without executing, use the -cc option.

http://manual.3dgamestudio.net/a-black.htm

Re: Lite-C Compiler and Compiler Output [Re: jcl] #365682
03/28/11 14:41
03/28/11 14:41
Joined: Dec 2008
Posts: 1,218
Germany
Rackscha Offline OP
Serious User
Rackscha  Offline OP
Serious User

Joined: Dec 2008
Posts: 1,218
Germany
Thank you.

When using Sed(For a quicktest)

i used

-diag -nwnd -cc

Acklog.txt created, compiled not executed, but window visible, and did not autoclose when an error ocurred o.O

GReets
Rackscha


MY Website with news of my projects:
(for example my current
Muliplayer Bomberman,
GenesisPrecompiler for LiteC
and TileMaster, an easy to use Tile editor)
Sparetime-Development

Re: Lite-C Compiler and Compiler Output [Re: Rackscha] #365683
03/28/11 14:43
03/28/11 14:43
Joined: Oct 2007
Posts: 5,209
İstanbul, Turkey
Quad Offline
Senior Expert
Quad  Offline
Senior Expert

Joined: Oct 2007
Posts: 5,209
İstanbul, Turkey
use -eq too


3333333333
Re: Lite-C Compiler and Compiler Output [Re: Rackscha] #365685
03/28/11 14:44
03/28/11 14:44
Joined: Jan 2011
Posts: 122
GUILIN , CHINA
tzw Offline
Member
tzw  Offline
Member

Joined: Jan 2011
Posts: 122
GUILIN , CHINA
WINDOW invisible need pro edition


Full of my eyes are class struggles.....
Re: Lite-C Compiler and Compiler Output [Re: tzw] #365686
03/28/11 14:58
03/28/11 14:58
Joined: Dec 2008
Posts: 1,218
Germany
Rackscha Offline OP
Serious User
Rackscha  Offline OP
Serious User

Joined: Dec 2008
Posts: 1,218
Germany
thout i have read about it that its possible to hide the window if still in devmode, and reapears after publish...

@Quadraxas: thanks

EDIT: and how are WATCH/Step by Step debug and OUTPUT integrated?

Last edited by Rackscha; 03/28/11 15:06.

MY Website with news of my projects:
(for example my current
Muliplayer Bomberman,
GenesisPrecompiler for LiteC
and TileMaster, an easy to use Tile editor)
Sparetime-Development

Re: Lite-C Compiler and Compiler Output [Re: Rackscha] #365728
03/28/11 20:35
03/28/11 20:35
Joined: Dec 2002
Posts: 616
Austria
Stromausfall Offline
User
Stromausfall  Offline
User

Joined: Dec 2002
Posts: 616
Austria
look in the sdk_engine\afuncs.h file for the functions : engine_debugposition, engine_debugbreakpoint and engine_debugstep they are involved afaik !


get the C# wrapper:
for A7.85.4 and A8.30.4, Version 2.3.9
at http://acknexwrapper2.matthias-auer.net/ or visit the thread
Re: Lite-C Compiler and Compiler Output [Re: tzw] #365756
03/28/11 22:26
03/28/11 22:26
Joined: Oct 2004
Posts: 897
Lgh
rojart Offline
User
rojart  Offline
User

Joined: Oct 2004
Posts: 897
Lgh
Originally Posted By: tzw
WINDOW invisible need pro edition

API does, like this:

Code:
#include <default.c>
#include <windows.h>

void main(){
   wait(1);
   ShowWindow(hWnd,SW_HIDE);
   wait(-5);
   ShowWindow(hWnd,SW_SHOW);
}




Regards, Robert

Quote
Everything should be made as simple as possible, but not one bit simpler.
by Albert Einstein

PhysX Preview of Cloth, Fluid and Soft Body

A8.47.1P
Re: Lite-C Compiler and Compiler Output [Re: rojart] #365758
03/28/11 22:33
03/28/11 22:33
Joined: Jan 2011
Posts: 122
GUILIN , CHINA
tzw Offline
Member
tzw  Offline
Member

Joined: Jan 2011
Posts: 122
GUILIN , CHINA
THX!!


Full of my eyes are class struggles.....
Re: Lite-C Compiler and Compiler Output [Re: tzw] #365837
03/29/11 16:15
03/29/11 16:15
Joined: Dec 2008
Posts: 1,218
Germany
Rackscha Offline OP
Serious User
Rackscha  Offline OP
Serious User

Joined: Dec 2008
Posts: 1,218
Germany
@Stromausfall: Thanks.

@Rojart: I know this function(fromd elphi :P), but your example is executed AFTER compile. I just need an invisible compiler window during devmode, thats all :|.

Thought that had been possible for devmode even as com user o.o.

Greets
Rackscha


MY Website with news of my projects:
(for example my current
Muliplayer Bomberman,
GenesisPrecompiler for LiteC
and TileMaster, an easy to use Tile editor)
Sparetime-Development


Moderated by  old_bill, Tobias 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1