BlackHole project

Jesus4Lyf

Good Idea™
Reaction score
397
Black Hole
Version 1.0.4 BETA​

Requirements:
- Java 6

How to use:
Run from the command line using in the folder of BlackHole.jar using: java -jar BlackHole.jar
This will parse all ".void" files inside the "void" scripts directory into a single "Output.SC2Lib" file to be imported into your map.

Example Voidscript:
JASS:
library TEST { // Test library
	int count = 0;
	public void Increment(int toAdd){
		count += toAdd;
	}
	public gui int GetCount() {
		return co/* random comment*/unt;
	}
}


Features:
Previous to-do which was here was completed.
Will document features properly some time...

Change List:
- Version 1.0.4 BETA: Implemented private identifiers. Changed previous "public" to "gui".
- Version 1.0.3 BETA: Added parsing of init{} syntax in libraries, implemented array parsing.
- Version 1.0.2 BETA: Initial groundwork for init{} and arrays completed.
- Version 1.0.1 BETA: Massive refactor.
- Version 1.0.0 BETA: Release.
 

Attachments

  • BlackHole.zip
    238 KB · Views: 394
  • BlackHoleSource.zip
    24.8 KB · Views: 307

Jesus4Lyf

Good Idea™
Reaction score
397
Hi,

I'm attempting to write a parser which should compile SC2Lib files from a galaxy-like syntax.

Just scouting for interest before I get too serious. Objectively is loosely a decompiler for galaxy script, so writing GUI can be made easier. :thup:

Writing it in Java. I don't care about compile time efficiency, I care about maintainability. :)
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
Isn't it to much early ?
I highly hope Blizzard will allow us to convert a trigger in plain galaxy when the official editor will be released, like wc3 in fact.
 

Vestras

Retired
Reaction score
248
Hi,

I'm attempting to write a parser which should compile SC2Lib files from a galaxy-like syntax.

Just scouting for interest before I get too serious. Objectively is loosely a decompiler for galaxy script, so writing GUI can be made easier. :thup:

Writing it in Java. I don't care about compile time efficiency, I care about maintainability. :)

If you could make a Galaxy --> SC2Lib parser I would love it. I need that for Moonlite, so go ahead and do it please.
:thup:
 

Joker(Div)

Always Here..
Reaction score
86
Isn't it to much early ?
I highly hope Blizzard will allow us to convert a trigger in plain galaxy when the official editor will be released, like wc3 in fact.
They stated they aren't going to have galaxy as a part of the trigger editor in the last Twitter Q&A session.
 

Troll-Brain

You can change this now in User CP.
Reaction score
85
They stated they aren't going to have galaxy as a part of the trigger editor in the last Twitter Q&A session.
OMG :thdown:
Even in the worst scenario i had imagined i didn't thought they would not include a decent way to code with galaxy instead of GUI, at very least i thought they would add a header like TFT.
It's so sad ...
 

Jesus4Lyf

Good Idea™
Reaction score
397
If you could make a Galaxy --> SC2Lib parser I would love it. I need that for Moonlite, so go ahead and do it please.
:thup:
I think we need to talk. I hope to add lang features with this like JassHelper, and also make it then compile to GUI. If you want to write a good editor for the lang I come up with, I think we've got a match made in heaven. :thup:

So far, I've dropped the ; from the very end of a struct declaration. Because it was:
JASS:
struct hi{
    int x;
    int y;
}; // <-- ??

Calling the "new" language Voidscript.

Edit: Proof of concept complete, I have the first BlackHole generated SC2Lib file working in SC2 editor. Once I complete the very basic functionality, I'll upload an Alpha version. :D
 

Vestras

Retired
Reaction score
248
OMG :thdown:
Even in the worst scenario i had imagined i didn't thought they would not include a decent way to code with galaxy instead of GUI, at very least i thought they would add a header like TFT.
It's so sad ...

There's still hope. As long as maps have a MapScript.galaxy anyone can write Galaxy, more or less. Might be the GE doesn't support it, but there will be third party programs for it then.

I think we need to talk. I hope to add lang features with this like JassHelper, and also make it then compile to GUI. If you want to write a good editor for the lang I come up with, I think we've got a match made in heaven. :thup:

So far, I've dropped the ; from the very end of a struct declaration. Because it was:
JASS:
struct hi{
    int x;
    int y;
}; // <-- ??

Calling the "new" language Voidscript.

Edit: Proof of concept complete, I have the first BlackHole generated SC2Lib file working in SC2 editor. Once I complete the very basic functionality, I'll upload an Alpha version. :D

Well, Moonlite accepts more than one preprocessor, so basically it's already compatible. But most preprocessors needs custom codes unless they're built directly for Moonlite (which is basically like JassHelper runs), so I think I would need to integrate BlackHole with Moonlite. If you give me your MSN we can discuss it further :)
So what's the difference between Voidscript and Galaxy?

Released Version 1.0.0 BETA with source. :thup:

Needs a lot of work, but lets people start giving feedback. See first post of thread for details on how it works/what it does. :)

Imma check out the code and see how it runs.
Keep up the good work :thup:
 

Jesus4Lyf

Good Idea™
Reaction score
397
If you give me your MSN we can discuss it further :)
Hm. I don't really have MSN.. I use Google Talk. :(

Let me know what's required to integrate and I could be able to help you out.

But yeah, definitely taking comments/requests at this point for BH. Let me know your feedback! :D

So what's the difference between Voidscript and Galaxy?
Very little:
- Everything must be inside a library.
- Public keyword added to make things usable in GUI (and will have LIBNAME_ prefix later, when I implement prefixing).
- Structs no longer need that ';' at the end of their declaration.
 

Vestras

Retired
Reaction score
248
Hm. I don't really have MSN.. I use Google Talk. :(

Let me know what's required to integrate and I could be able to help you out.

Well, I'll download (?) Google Talk then. :p EDIT: There, downloaded Google Talk. mcrelsker(at)gmail(dot)com
Moonlite is in C#, so I don't think you can help really. (Unless you know C#?) The integration process is also not very hard, depending on how you want it to be integrated of course.

Very little:
- Everything must be inside a library.
- Public keyword added to make things usable in GUI (and will have LIBNAME_ prefix later, when I implement prefixing).
- Structs no longer need that ';' at the end of their declaration.

So BlackHole is actually also a Language instead of just a Galaxy -> SC2Lib converter?
EDIT: Also, please - not libraries. I've had enough of them. Classes, yes :) (And for public -> className.methodName();)
 

overload119

New Member
Reaction score
5
From what I understand this is just another language.

I can't help but feel like most people are going to be more lenient towards Andromeda.

The code -> Sc2 LIB is really helpful though.
 

Weep

Godspeed to the sound of the pounding
Reaction score
400
There seem to be a million and a half "vGalaxyScript" and IDE projects, and I can't follow all of them to hound for Mac compatibility. :(

At least this one is in Java. :thup: :thup:
 

Vestras

Retired
Reaction score
248
There seem to be a million and a half "vGalaxyScript" and IDE projects, and I can't follow all of them to hound for Mac compatibility. :(

At least this one is in Java. :thup: :thup:

There's 1 IDE and 2 languages, take it easy. :p
 

Jesus4Lyf

Good Idea™
Reaction score
397
From what I understand this is just another language.

I can't help but feel like most people are going to be more lenient towards Andromeda.

The code -> Sc2 LIB is really helpful though.
Yeah. But this language is designed to integrate with GUI. Andromeda, from what I understand, has no integration with SC2. Anyway, I don't see why:
a. I can't put everything Andromeda has into Voidscript and
b. Why you can do Andromeda --> BlackHole --> GUI.
:thup:
 

overload119

New Member
Reaction score
5
What do you mean by integrated?

Converting to SC2Lib and having to import is hardly "integrated".

Are you saying your thing is going to end up being like TESH?

I'm just waiting on Vestras tool, which is being done in conjunction with Andromeda, so that it almost completely replaces the GE and so in effect it is 'integrated' with SC2. Honestly, the Trigger Editor is so laggy in GE.

a. I can't put everything Andromeda has into Voidscript and
b. Why you can do Andromeda --> BlackHole --> GUI.

Why would you want to do something that has already been done?
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1
  • The Helper The Helper:
    The recipe today is Sloppy Joe Casserole - one of my faves LOL https://www.thehelper.net/threads/sloppy-joe-casserole-with-manwich.193585/
  • The Helper The Helper:
    Decided to put up a healthier type recipe to mix it up - Honey Garlic Shrimp Stir-Fry https://www.thehelper.net/threads/recipe-honey-garlic-shrimp-stir-fry.193595/

      The Helper Discord

      Staff online

      • Ghan
        Administrator - Servers are fun

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top