verse 2.0 finaly out.
Moderators: jesterKing, stiv
verse 2.0 finaly out.
Sorry for the delay but verse 2.0 was just released at http://www.quelsolaar.com .This is a complete rewrite and will be the fresh new base for the Next Gen Project.
So far there are no applications using it, or even a server. but you can bet you ass i going to get out new software fast now. expect new versions of all my verse related apps soon. and expect to get a little move on the Next Gen Blender project too.
Have fun
E
So far there are no applications using it, or even a server. but you can bet you ass i going to get out new software fast now. expect new versions of all my verse related apps soon. and expect to get a little move on the Next Gen Blender project too.
Have fun
E
-
- Posts: 442
- Joined: Wed Oct 23, 2002 2:47 pm
Hey essiee
I know I know... about your mac how it is no longer with you.
But I must plead with you to look for a Mac coder to compile your verse
stuff so all can enjoy for labor. I know that anyone can do such but sometimes
it takes is a little asking around to wake up the crowd. Try posting again
on www.versiontracker.com say that it is the NeoBlender and that it has to
be compiled to work. Somebody there would most likly try. We love eye
candy ya know.
cheese rice ^v^
I know I know... about your mac how it is no longer with you.
But I must plead with you to look for a Mac coder to compile your verse
stuff so all can enjoy for labor. I know that anyone can do such but sometimes
it takes is a little asking around to wake up the crowd. Try posting again
on www.versiontracker.com say that it is the NeoBlender and that it has to
be compiled to work. Somebody there would most likly try. We love eye
candy ya know.
cheese rice ^v^
Eskil,
I've been trying to compile the new Verse on a SuSE 8.1 machine with no luck. I can't seem to compile any of the source files. I saw in your README.TXT that it needs to be compiled twice, but I can't get past the first pass.
If I can resolve this, I plan to compile on RedHat and probably Debian as well. (I have Windows 2000 machines, but I'm noteven gonna attempt that!)
I looked through the original doc for Verse on the web site and I have a question: For only the new Verse what external libraries are required?
Also In the distro I downloaded, the files v_func_gen.c and "v_cmd _gen.c" (note the space in the filename before _gen) are both empty. Is that correct?
Any help is apprecated.
I've been trying to compile the new Verse on a SuSE 8.1 machine with no luck. I can't seem to compile any of the source files. I saw in your README.TXT that it needs to be compiled twice, but I can't get past the first pass.

If I can resolve this, I plan to compile on RedHat and probably Debian as well. (I have Windows 2000 machines, but I'm noteven gonna attempt that!)
I looked through the original doc for Verse on the web site and I have a question: For only the new Verse what external libraries are required?
Also In the distro I downloaded, the files v_func_gen.c and "v_cmd _gen.c" (note the space in the filename before _gen) are both empty. Is that correct?
Any help is apprecated.
Ok, lets see. The empty files are just my bad, I was in a hurry when putting the zip together, ignore them.
The original verse is different, it requires, Glib, Pthreads and other things. My implementation only needs sockets and std lib. All the stuff that requires socks can be found in "v_network.h" if you get this one to run you should have no problems.
What kind of errors do you get?
E
The original verse is different, it requires, Glib, Pthreads and other things. My implementation only needs sockets and std lib. All the stuff that requires socks can be found in "v_network.h" if you get this one to run you should have no problems.
What kind of errors do you get?
E
Verse/verse2source> gcc -v
Reading specs from /usr/lib/gcc-lib/i486-suse-linux/3.2/specs
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib --enable-languages=c,c++,f77,objc,java,ada --enable-libgcj --with-gxx-include-dir=/usr/include/g++ --with-slibdir=/lib --with-system-zlib --enable-shared --enable-__cxa_atexit i486-suse-linux
Thread model: posix
gcc version 3.2
=================
Verse/verse2source> gcc -fPIC v_network.c
v_network.c:26: warning: redefinition of `uint'
/usr/include/sys/types.h:152: warning: `uint' previously declared here
v_network.c: In function `v_n_get_socket':
v_network.c:57: `v_n_socket' undeclared (first use in this function)
v_network.c:57: (Each undeclared identifier is reported only once
v_network.c:57: for each function it appears in.)
v_network.c: In function `v_n_create_network_address':
v_network.c:120: `i' undeclared (first use in this function)
v_network.c:125: `their_port' undeclared (first use in this function)
v_network.c: At top level:
v_network.c:159: parse error before "boolean"
v_network.c: In function `v_n_receive_data':
v_network.c:166: `address' undeclared (first use in this function)
v_network.c:169: `data' undeclared (first use in this function)
v_network.c:169: `length' undeclared (first use in this function)
=============
I get the same errors without the PIC option.
Reading specs from /usr/lib/gcc-lib/i486-suse-linux/3.2/specs
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib --enable-languages=c,c++,f77,objc,java,ada --enable-libgcj --with-gxx-include-dir=/usr/include/g++ --with-slibdir=/lib --with-system-zlib --enable-shared --enable-__cxa_atexit i486-suse-linux
Thread model: posix
gcc version 3.2
=================
Verse/verse2source> gcc -fPIC v_network.c
v_network.c:26: warning: redefinition of `uint'
/usr/include/sys/types.h:152: warning: `uint' previously declared here
v_network.c: In function `v_n_get_socket':
v_network.c:57: `v_n_socket' undeclared (first use in this function)
v_network.c:57: (Each undeclared identifier is reported only once
v_network.c:57: for each function it appears in.)
v_network.c: In function `v_n_create_network_address':
v_network.c:120: `i' undeclared (first use in this function)
v_network.c:125: `their_port' undeclared (first use in this function)
v_network.c: At top level:
v_network.c:159: parse error before "boolean"
v_network.c: In function `v_n_receive_data':
v_network.c:166: `address' undeclared (first use in this function)
v_network.c:169: `data' undeclared (first use in this function)
v_network.c:169: `length' undeclared (first use in this function)
=============
I get the same errors without the PIC option.
Ok we seams to have a few redefinition's...
v_n_socket should be just "sock"...
we have 2 definitions on the wrong side of the ifdef...
some thing is fishy in func: v_n_receive_data too..
I will do some fixes and get a new version ot some time this week end. I am currently working on the server and I am also involved in a lot of stuff to try to give some extra funding to the project. I will be away the major part of next week but i hope we can get a new server running fairly soon.
E
Peace now. if you want to
v_n_socket should be just "sock"...
we have 2 definitions on the wrong side of the ifdef...
some thing is fishy in func: v_n_receive_data too..
I will do some fixes and get a new version ot some time this week end. I am currently working on the server and I am also involved in a lot of stuff to try to give some extra funding to the project. I will be away the major part of next week but i hope we can get a new server running fairly soon.
E
Peace now. if you want to
>I know you're a busy guy
nah, its mostly an act..
I have uploaded a new zip file with the updates.
gargola:
verse is a network protocol for 3d graphics. the plan is to try to build the next gen blender using this protocol.
you can read about verse here:
http://www.quelsolaar.com/technology/ve ... r-emil.pdf
and about next gen blender here:
http://www.quelsolaar.com/connector/NextGenBlender.txt
E
Arms are for hugs not war
nah, its mostly an act..

I have uploaded a new zip file with the updates.
gargola:
verse is a network protocol for 3d graphics. the plan is to try to build the next gen blender using this protocol.
you can read about verse here:
http://www.quelsolaar.com/technology/ve ... r-emil.pdf
and about next gen blender here:
http://www.quelsolaar.com/connector/NextGenBlender.txt
E
Arms are for hugs not war