Author Topic: Soldat.IDE - would you use it?  (Read 21605 times)

0 Members and 1 Guest are viewing this topic.

Offline DorkeyDear

  • Veteran
  • *****
  • Posts: 1507
  • I also go by Curt or menturi
Re: Soldat.IDE - would you use it?
« Reply #20 on: June 27, 2009, 11:21:49 am »
I've been more recently doing this, but having separate scripts interact with each other. I create a file that has the exact same function names, but they call CrossFunc on the actual function. It would be awesome if you had a thing where I could like highlight what functions I want to be usable, and then select the script that it'll put the CrossFunc and functions in.
Note there is a problem though: type variant doesn't support arrays, but I've created a thing to work around this. Just ask if you want to auto implement it (would be cool, but I don't have any ideas atm of how it'd work), or have the user do it themselves.

Offline LORD KILLA

  • Camper
  • ***
  • Posts: 254
  • Happie
Re: Soldat.IDE - would you use it?
« Reply #21 on: June 27, 2009, 12:54:17 pm »
var MyVar: array[1..10] of variant;
Thats possible, i did that

Offline Neosano

  • Camper
  • ***
  • Posts: 253
  • IIAWAK!
Re: Soldat.IDE - would you use it?
« Reply #22 on: June 29, 2009, 05:40:50 am »
WHERE CAN I DOWNLOAD IT!????
LINK!!
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
KAWAAAAAAAIIIIIIIIII

Offline LORD KILLA

  • Camper
  • ***
  • Posts: 254
  • Happie
Re: Soldat.IDE - would you use it?
« Reply #23 on: June 29, 2009, 12:33:45 pm »
If you did not noticed, then I'll tell you now: Its not ready yet.  :'(

Offline Neosano

  • Camper
  • ***
  • Posts: 253
  • IIAWAK!
Re: Soldat.IDE - would you use it?
« Reply #24 on: July 04, 2009, 05:55:14 pm »
If you did not noticed, then I'll tell you now: Its not ready yet.  :'(
Aaaa! I must kill you for these words!!!
KAWAAAAAAAIIIIIIIIII

Offline LORD KILLA

  • Camper
  • ***
  • Posts: 254
  • Happie
Re: Soldat.IDE - would you use it?
« Reply #25 on: July 05, 2009, 04:22:49 am »
If you did not noticed, then I'll tell you now: Its not ready yet.  :'(
Aaaa! I must kill you for these words!!!
ok, no problem! join my server and expect me in there.

And, i want to help ^^ what language you are writing that? - Seems to be delphi, yes?
Here another usefull idea: 'vars diagram', shows the variables in a sheet, or a tree (there should be a component), i think its easy and usefull (four roots: VAR, CONST, TYPE, CLASS)
« Last Edit: July 05, 2009, 04:32:13 am by LORD KILLA »

DarkCrusade

  • Guest
Re: Soldat.IDE - would you use it?
« Reply #26 on: July 05, 2009, 09:48:46 am »
I didn´t get what this would do ... please explain it to me I am dumb.

Offline DorkeyDear

  • Veteran
  • *****
  • Posts: 1507
  • I also go by Curt or menturi
Re: Soldat.IDE - would you use it?
« Reply #27 on: July 05, 2009, 03:08:35 pm »
I didn´t get what this would do ... please explain it to me I am dumb.
It just basically makes scripting easier for those who create scripts.

Offline PKS|Shooter

  • Soldier
  • **
  • Posts: 130
  • Dont fuck with us!
    • PKS - La Familia
Re: Soldat.IDE - would you use it?
« Reply #28 on: July 05, 2009, 03:33:42 pm »
ffs warlord release it :D

Offline ManSoft|Warlord

  • Major
  • *
  • Posts: 70
  • Soldat.IDE Creator
Re: Soldat.IDE - would you use it?
« Reply #29 on: July 06, 2009, 09:13:18 am »
there just some bugs i need to fix. But this week I won't be able to fix them. Don't be afraid. I think arround 18. July there will be a public beta version.
And yes: It's written in Delphi.
"vars diagram" - Hm. Nice idea. I will try to implement this in the future.
"CrossFunc" - I don't know how it works. Maybe someone would PM me an example?

Greets Warlord

Offline DorkeyDear

  • Veteran
  • *****
  • Posts: 1507
  • I also go by Curt or menturi
Re: Soldat.IDE - would you use it?
« Reply #30 on: July 07, 2009, 03:35:35 pm »
"CrossFunc" - I don't know how it works. Maybe someone would PM me an example?
I'll just say here because I'm lazy.

Code: (pascal) [Select]
function CrossFunc(Params: array of variant; Func: string): variant;Whereas Func is in the format <scriptname>.<funcname>.
I do not believe it works with built-in functions, but it might.

Example:

(script "HappyFeat")
Code: (pascal) [Select]
function Foo(Bar: string): integer;
begin
  WriteLn('"' + Bar + '"');
  Result := StrtoInt(Bar);
end;

(script "SadFeat")
Code: (pascal) [Select]
function Foo(Bar: string): integer; // not necessary to put in a separate function
begin
  Result := CrossFunc([Bar], 'HappyFeat.Foo');
end;

function OnCommand(Id: byte; Text: string): boolean;
begin
  if (LowerCase(GetPiece(Text, ' ', 0)) = '/test') then
    Result := Foo(GetPiece(Text, ' ', 1)) = 1;
end;


Suggestion: Support for specifying the .exe file that is used to test compilation.

Offline Neosano

  • Camper
  • ***
  • Posts: 253
  • IIAWAK!
Re: Soldat.IDE - would you use it?
« Reply #31 on: August 06, 2009, 02:11:50 am »
So?
KAWAAAAAAAIIIIIIIIII

Offline FliesLikeABrick

  • Administrator
  • Flamebow Warrior
  • *****
  • Posts: 6144
    • Ultimate 13 Soldat
Re: Soldat.IDE - would you use it?
« Reply #32 on: August 07, 2009, 12:39:19 am »
If you want to make it open-source/a community project, I'll give you a SVN repository for it.

Offline LORD KILLA

  • Camper
  • ***
  • Posts: 254
  • Happie
Re: Soldat.IDE - would you use it?
« Reply #33 on: August 22, 2009, 11:32:33 am »
You said its nearly finished, is it finished finally, or do we have to wait a hundret years for it ?
I am checking this site every day, so i really expect it :|

Offline ManSoft|Warlord

  • Major
  • *
  • Posts: 70
  • Soldat.IDE Creator
Re: Soldat.IDE - would you use it?
« Reply #34 on: January 03, 2010, 01:09:51 pm »
Sorry guys, that I did not reply faster. I am going to release an early beta-Version the next days. So - please be patient. I will fix all those known bugs before I'll add some new features.

Read ya!

Offline Mercury92

  • Camper
  • ***
  • Posts: 284
Re: Soldat.IDE - would you use it?
« Reply #35 on: April 12, 2010, 05:26:21 am »
Sorry guys, that I did not reply faster. I am going to release an early beta-Version the next days. So - please be patient. I will fix all those known bugs before I'll add some new features.

Read ya!
next months already passed  :o
[saw]  on 1.5.1

Offline Swompie

  • Camper
  • ***
  • Posts: 390
Re: Soldat.IDE - would you use it?
« Reply #36 on: April 12, 2010, 06:57:52 am »
Sorry guys, that I did not reply faster. I am going to release an early beta-Version the next days. So - please be patient. I will fix all those known bugs before I'll add some new features.

Read ya!
next months already passed  :o
Good things need time, get the time and you will see much better results  :P

Offline jrgp

  • Administrator
  • Flamebow Warrior
  • *****
  • Posts: 5037
Re: Soldat.IDE - would you use it?
« Reply #37 on: April 12, 2010, 02:10:08 pm »
Sorry guys, that I did not reply faster. I am going to release an early beta-Version the next days. So - please be patient. I will fix all those known bugs before I'll add some new features.

Read ya!
next months already passed  :o
Good things need time, get the time and you will see much better results  :P

That's only assuming the project in question wasn't abandoned.  :-\
« Last Edit: April 12, 2010, 02:12:03 pm by jrgp »
There are other worlds than these

Offline LORD KILLA

  • Camper
  • ***
  • Posts: 254
  • Happie
Re: Soldat.IDE - would you use it?
« Reply #38 on: May 13, 2010, 04:33:39 am »
I think, almost everyone is waiting for this... If you dont work on this anymore, release the source, someone else may contuniue work on it.

DarkCrusade

  • Guest
Re: Soldat.IDE - would you use it?
« Reply #39 on: May 13, 2010, 09:44:26 am »
If he visits the forum to look into this thread