Page 12 of 16

Re: Idea: Visual NXC

Posted: 18 Oct 2011, 15:37
by sidneys1
Finally got around to merging the main fork of Visual NXC with the Compiler fork. Some interesting new features added as well:

http://screenr.com/Dlrs

Have a nice day,
~Sidneys1

Re: Idea: Visual NXC

Posted: 25 Oct 2011, 05:56
by mightor
That is some impressive work! I am really looking forward to seeing the finished project :)

- Xander

Re: Idea: Visual NXC

Posted: 30 Oct 2011, 18:16
by sidneys1
I'm thinking of adding a new feature... A sort of hybrid view that shows the blocks, but instead of a simplified piece of text to title the block it shows the actual code-behind.. Just a thought.

~Sidneys1

Re: Idea: Visual NXC

Posted: 30 Oct 2011, 18:37
by mattallen37
As long as that view is optional, that sounds good.

Re: Idea: Visual NXC

Posted: 30 Oct 2011, 19:50
by muntoo
sidneys1 wrote:A sort of hybrid view that shows the blocks, but instead of a simplified piece of text to title the block it shows the actual code-behind.
Or you could have a hover-over 'tool tip' appear that shows a few lines of the code whenever you hover over a block.

By 'hybrid', I am guessing you mean having two panels: the rendered blocks and the source code. (Sort of like Firebug or Chrome Developer Tools docked.)

Re: Idea: Visual NXC

Posted: 30 Oct 2011, 20:00
by sidneys1
muntoo wrote:Or you could have a hover-over 'tool tip' appear that shows a few lines of the code whenever you hover over a block.

By 'hybrid', I am guessing you mean having two panels: the rendered blocks and the source code. (Sort of like Firebug or Chrome Developer Tools docked.)
Not quite... I'll work up a mock later if I have time.

Re: Idea: Visual NXC

Posted: 03 Dec 2011, 21:01
by sidneys1
Finally got around to it... :)

The Visual NXC Website

Have a nice day,
~Sidneys1

Re: Idea: Visual NXC

Posted: 04 Dec 2011, 00:59
by mattallen37
Very nice theme :P

Re: Idea: Visual NXC

Posted: 04 Dec 2011, 03:09
by sidneys1
Got bored and had Expression Web 4 on my hands :) Only took maybe 5-7 hours total.

Have a nice day,
~Sidneys1

Re: Idea: Visual NXC

Posted: 04 Dec 2011, 04:02
by muntoo
You should make the header translucent. :)

BTW, instead of:

Code: Select all

Start: main()
End: main()
You could make it look like while().

Code: Select all

main()

    Rotate Motor Forward (Port A, 100%)
    Wait (2.5s)

    while (true)
        Wait(42ms)
        Wait(42ms)
        Wait(42ms)
    // End of while 'block'.

// End of main 'block'