This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#326 2012-10-26 22:34:30

pwiter
Scratcher
Registered: 2010-06-02
Posts: 100+

Re: Itchy++ - a Scratch C++ Port

ahirbhairav wrote:

Too many libs, which file?

Idk...
This one expat_2.1.0-1_win32.zip

Last edited by pwiter (2012-10-26 22:35:29)


http://i.imgur.com/YBeXc.png

Offline

 

#327 2012-10-26 22:39:17

ahirbhairav
Scratcher
Registered: 2012-10-06
Posts: 100+

Re: Itchy++ - a Scratch C++ Port

Whoa, thanks a bunch! Now to get to testing.

Offline

 

#328 2012-10-27 05:49:15

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

ahirbhairav wrote:

It doesn't run; I need libexpat.dll to run. Where do I get that?

BTW my github username is ahirbhairav

ok, I've added you to our github org  smile


http://i.imgur.com/1QqnHxQ.png

Offline

 

#329 2012-10-28 12:22:10

theprogrammerpro
New Scratcher
Registered: 2012-09-01
Posts: 79

Re: Itchy++ - a Scratch C++ Port

when am i supposed to test this

Offline

 

#330 2012-10-28 20:38:04

ahirbhairav
Scratcher
Registered: 2012-10-06
Posts: 100+

Re: Itchy++ - a Scratch C++ Port

I'm unable to run the program. which one do i run?

Offline

 

#331 2012-10-28 22:16:42

theprogrammerpro
New Scratcher
Registered: 2012-09-01
Posts: 79

Re: Itchy++ - a Scratch C++ Port

ahirbhairav wrote:

I'm unable to run the program. which one do i run?

i do believe this is because after extracting the file it tries to call upon a file that does not exist... TRocket might explain more

Offline

 

#332 2012-10-29 03:13:14

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

theprogrammerpro wrote:

ahirbhairav wrote:

I'm unable to run the program. which one do i run?

i do believe this is because after extracting the file it tries to call upon a file that does not exist... TRocket might explain more

Yes, this may be the problem, please could you tell me the error message you get and i'll put the link to what you have to download.

Last edited by TRocket (2012-10-29 03:13:36)


http://i.imgur.com/1QqnHxQ.png

Offline

 

#333 2012-10-29 05:05:40

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

I tried to compile on my Mac, but it outputs this:

Code:

Nathans-MacBook-Pro:src Nathan$ make
c++    -c -o main.o main.cpp
In file included from main.cpp:2:
./Itchy.h:4:10: fatal error: 'SDL/SDL.h' file not found
#include <SDL/SDL.h>
         ^
1 error generated.
make: *** [main.o] Error 1

I put SDL in the same folder as Itchy++, but it still gives the same error.  hmm


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&amp;display=small

Offline

 

#334 2012-10-29 05:09:13

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

nathanprocks wrote:

I tried to compile on my Mac, but it outputs this:

Code:

Nathans-MacBook-Pro:src Nathan$ make
c++    -c -o main.o main.cpp
In file included from main.cpp:2:
./Itchy.h:4:10: fatal error: 'SDL/SDL.h' file not found
#include <SDL/SDL.h>
         ^
1 error generated.
make: *** [main.o] Error 1

I put SDL in the same folder as Itchy++, but it still gives the same error.  hmm

Hmm, did you put SDL in src/ ? or you could add it to your include path...


http://i.imgur.com/1QqnHxQ.png

Offline

 

#335 2012-10-29 05:52:49

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

TRocket wrote:

nathanprocks wrote:

I tried to compile on my Mac, but it outputs this:

Code:

Nathans-MacBook-Pro:src Nathan$ make
c++    -c -o main.o main.cpp
In file included from main.cpp:2:
./Itchy.h:4:10: fatal error: 'SDL/SDL.h' file not found
#include <SDL/SDL.h>
         ^
1 error generated.
make: *** [main.o] Error 1

I put SDL in the same folder as Itchy++, but it still gives the same error.  hmm

Hmm, did you put SDL in src/ ? or you could add it to your include path...

Yes I put SDL in src/ .


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&amp;display=small

Offline

 

#336 2012-10-29 19:27:52

iNetMaster2
New Scratcher
Registered: 2012-10-29
Posts: 6

Re: Itchy++ - a Scratch C++ Port

Hey this sounds cool. Can I test out?

Offline

 

#337 2012-10-29 20:23:03

pwiter
Scratcher
Registered: 2010-06-02
Posts: 100+

Re: Itchy++ - a Scratch C++ Port

nathanprocks wrote:

TRocket wrote:

nathanprocks wrote:

I tried to compile on my Mac, but it outputs this:

Code:

Nathans-MacBook-Pro:src Nathan$ make
c++    -c -o main.o main.cpp
In file included from main.cpp:2:
./Itchy.h:4:10: fatal error: 'SDL/SDL.h' file not found
#include <SDL/SDL.h>
         ^
1 error generated.
make: *** [main.o] Error 1

I put SDL in the same folder as Itchy++, but it still gives the same error.  hmm

Hmm, did you put SDL in src/ ? or you could add it to your include path...

Yes I put SDL in src/ .

You have to put it in your includes folder. You also need the cairomm wrapper for ciaro.


http://i.imgur.com/YBeXc.png

Offline

 

#338 2012-10-30 03:56:26

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

iNetMaster2 wrote:

Hey this sounds cool. Can I test out?

Yep There isn't really that much to test at the moment. Also I highly dought you are the real -iNetMaster-  tongue  R.I.P. -inetmaster-


http://i.imgur.com/1QqnHxQ.png

Offline

 

#339 2012-11-01 01:41:33

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

Bump.


http://i.imgur.com/1QqnHxQ.png

Offline

 

#340 2012-11-03 03:59:28

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

TRocket wrote:

Bump.


http://i.imgur.com/1QqnHxQ.png

Offline

 

#341 2012-11-04 15:36:37

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

what widget toolkit should we use?


http://i.imgur.com/1QqnHxQ.png

Offline

 

#342 2012-11-04 17:25:42

pwiter
Scratcher
Registered: 2010-06-02
Posts: 100+

Re: Itchy++ - a Scratch C++ Port

TRocket wrote:

what widget toolkit should we use?

wxWidgets?


http://i.imgur.com/YBeXc.png

Offline

 

#343 2012-11-08 00:11:32

theprogrammerpro
New Scratcher
Registered: 2012-09-01
Posts: 79

Re: Itchy++ - a Scratch C++ Port

has it been reset to where it can be run emediatly...also is it an exe or do i need to use codeblocks.

Offline

 

#344 2012-11-08 03:34:01

DigiTechs
Scratcher
Registered: 2011-04-30
Posts: 500+

Re: Itchy++ - a Scratch C++ Port

theprogrammerpro wrote:

has it been reset to where it can be run emediatly...also is it an exe or do i need to use codeblocks.

Yeah. You need to compile it yourself. I'd like to see how this turns out, because a lot of work's gone into it.


I'm back.
Maybe.

Offline

 

#345 2012-11-08 07:17:47

roijac
Scratcher
Registered: 2010-01-19
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

pwiter wrote:

TRocket wrote:

what widget toolkit should we use?

wxWidgets?

why do you need widgets?
are you making an editor also?

Offline

 

#346 2012-11-08 11:42:29

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

roijac wrote:

pwiter wrote:

TRocket wrote:

what widget toolkit should we use?

wxWidgets?

why do you need widgets?
are you making an editor also?

widgets are things like text boxes, buttons, toolbars, etc...
yes we are also making an editor... soon


http://i.imgur.com/1QqnHxQ.png

Offline

 

#347 2012-11-08 14:13:53

DigiTechs
Scratcher
Registered: 2011-04-30
Posts: 500+

Re: Itchy++ - a Scratch C++ Port

TRocket wrote:

roijac wrote:

pwiter wrote:


wxWidgets?

why do you need widgets?
are you making an editor also?

widgets are things like text boxes, buttons, toolbars, etc...
yes we are also making an editor... soon

I would tell you to use Windows Visual Studio 2010, but I don't know if you're running Windows so you might not be able to. If you had Windows and used Windows Visual Studio, you can get the buttons etc built in, all you would have to do is create a... OH WHAT IS IT CALLED... *facepalm*


I'm back.
Maybe.

Offline

 

#348 2012-11-08 14:17:55

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

DigiTechs wrote:

TRocket wrote:

roijac wrote:


why do you need widgets?
are you making an editor also?

widgets are things like text boxes, buttons, toolbars, etc...
yes we are also making an editor... soon

I would tell you to use Windows Visual Studio 2010, but I don't know if you're running Windows so you might not be able to. If you had Windows and used Windows Visual Studio, you can get the buttons etc built in, all you would have to do is create a... OH WHAT IS IT CALLED... *facepalm*

I could get Visual studio. (I could even get pro for free through DreamSpark) but the code as currently only been tested with GNU and the main reason for writing this is so scratch 2.0 can be used easily on linux...


http://i.imgur.com/1QqnHxQ.png

Offline

 

#349 2012-11-08 14:19:12

DigiTechs
Scratcher
Registered: 2011-04-30
Posts: 500+

Re: Itchy++ - a Scratch C++ Port

TRocket wrote:

DigiTechs wrote:

TRocket wrote:


widgets are things like text boxes, buttons, toolbars, etc...
yes we are also making an editor... soon

I would tell you to use Windows Visual Studio 2010, but I don't know if you're running Windows so you might not be able to. If you had Windows and used Windows Visual Studio, you can get the buttons etc built in, all you would have to do is create a... OH WHAT IS IT CALLED... *facepalm*

I could get Visual studio. (I could even get pro for free through DreamSpark) but the code as currently only been tested with GNU and the main reason for writing this is so scratch 2.0 can be used easily on linux...

I know, but I was just pointing out that you could do that - as Windows Visual Studio has a "Toolbox" where you can select most of the default controls, like Buttons, Textboxes etc.


I'm back.
Maybe.

Offline

 

#350 2012-11-08 14:43:22

roijac
Scratcher
Registered: 2010-01-19
Posts: 1000+

Re: Itchy++ - a Scratch C++ Port

TRocket wrote:

roijac wrote:

pwiter wrote:


wxWidgets?

why do you need widgets?
are you making an editor also?

widgets are things like text boxes, buttons, toolbars, etc...
yes we are also making an editor... soon

i know what widgets are, i code M30W  wink

why not come over, actually?
I've got saving/loading working perfectly, editing code is already working and it's super easy python  wink

Offline

 

Board footer