Page 6 of 19

Re: wishlist for BricxCC

Posted: 22 Apr 2011, 13:34
by mesheets
I'm not sure I see what would be considered discussion...that was a wish for BricxCC for Linux that fully supports the RCX???

Re: wishlist for BricxCC

Posted: 25 Apr 2011, 15:56
by afanofosc
Adding support for the RCX on Linux is not a very high priority for me since it is not widely used anymore. You can continue to use NQC and your favorite text editor on Linux along with shell scripts to compile and download your code to the RCX.

John Hansen

Re: wishlist for BricxCC

Posted: 09 May 2011, 10:20
by bungeshea
I don't use most of the functions of BricxCC like Pascal, PBForth, NQC, LeJOS etc so I would like program that only has NXC/NBC code colouring and a NXC/NBC complier.

Also something that I think would be cool is a virtual NXT that you can test your programs on, but I don't know if that is possible.

Re: wishlist for BricxCC

Posted: 10 May 2011, 00:51
by mattallen37
In NXC, if you compile a program, you can press f12 to see the NBC code.

In NQC, if you compile a program, you can press f12 to see not only the asm, but also the hex, and byte index numbers at the beginning of each line.

I want to be able to see the hex in NXC as well as the byte numbers at the beginning of each line.

What would also be cool, is if I could see the actual complete thing in hex (not listed by line, but how the rxe is formatted).

Re: wishlist for BricxCC

Posted: 21 May 2011, 16:40
by HaWe
could we please have .h files working (like .nxc files) with
- the built-in text highlighting,
- context sensitive help function,
- and test compile for error checking?

Re: wishlist for BricxCC

Posted: 14 Jun 2011, 23:27
by bungeshea
Could you please add a Copy Special for BBCode so we can post colourised source code on the forums?

Image

Re: wishlist for BricxCC

Posted: 24 Jun 2011, 21:38
by nxtboyiii
Could we please have it so when a user types in an opening curly brace and hits Enter then a closing curly brace appears two lines below the opening curly brace?

Thanks,
nxtboy III

Re: wishlist for BricxCC

Posted: 24 Jun 2011, 23:07
by muntoo
nxtboyiii wrote:Could we please have it so when a user types in an opening curly brace and hits Enter then a closing curly brace appears two lines below the opening curly brace?
And could we make this feature optional? I like typing my own close braces.

Re: wishlist for BricxCC

Posted: 24 Jun 2011, 23:16
by mattallen37
muntoo wrote:
nxtboyiii wrote:Could we please have it so when a user types in an opening curly brace and hits Enter then a closing curly brace appears two lines below the opening curly brace?
And could we make this feature optional? I like typing my own close braces.
+1. I don't mind if it is a feature, but I don't want to be required to use it.

Re: wishlist for BricxCC

Posted: 25 Jun 2011, 08:29
by HaWe
matt,
I double that.

But Further more it would be nice if we had a "real" auto-indent (when checking "auto indent" in preferences):
after "{" and [ENTER]
Linefeed
Cusor under last start of line plus inserted 2 or 3 White Spaces ( or as defined by user )

and after that when typing "}" automatically placed under the line start of the block:

Code: Select all

void foo() {
  do sth in foo // <<<< after "{" +  [ENTER]: => LF + 2 white spaces
  do sth different in foo
  if (anything true OR false) {
    do somthing in if block // <<<< after "{" + [ENTER]: =>  LF + 2 white spaces
    do sth more in if block
  } // <<<<<<   alligned to "if" 2 white spaces reverse
  do sth specific in foo
} // <<<<<<  alligned to function declaration void foo  2 white spaces reverse