Search found 9 matches

by ben0bi
Sat Nov 10, 2007 7:28 am
Forum: Developer's Forum for Windows
Topic: zBrush plugin problems...
Replies: 1
Views: 7491

zBrush plugin problems...

if anyone can help me with this stuff i would be happy:

http://209.132.96.165/zbc/showthread.ph ... post411610

(this is my original post in the zbrush forums)

looks like i need to hack around (if i can). :(

greetings,
ben0bi
by ben0bi
Mon Oct 29, 2007 6:16 am
Forum: Developer's Forum for Windows
Topic: c/c++: why do i do not have input?
Replies: 10
Views: 22983

CRITICAL UPDATE

i found a better way. ok, GetMessage will STOP and WAIT for a message. i found this out because i have a GetAsyncKeyState(VK_SPACE) to end the program. if i press space with GetMessage, i have to touch the mouse so a message will be produced. the better way is: if(PeekMessage(&Msg, NULL, 0, 0, P...
by ben0bi
Fri Oct 26, 2007 1:35 am
Forum: Developer's Forum for Windows
Topic: please update your api documentation.
Replies: 1
Views: 7007

please update your api documentation.

could you please update your api documentation, i found some errors: first of all, the user should know, he has to do a message translation/dispatching. ok: on the keyboard documentation, you have the same description for several functions: 7.1.2 Keyboard::IsKeyUp "This property returns the up ...
by ben0bi
Thu Oct 25, 2007 12:11 pm
Forum: Developer's Forum for Windows
Topic: c/c++: why do i do not have input?
Replies: 10
Views: 22983

YOU DO NOT NEED A WINDOWS APP

a friend of mine found the solution: you do not need a windows app. you do not even need a standard message loop. my friend has a console app with a console main function ! all you need is this (in the loop where the mouse is updated): (#include <windows>) ;) MSG msg; if(GetMessage(&msg,NULL,0,0...
by ben0bi
Wed Oct 24, 2007 2:56 pm
Forum: Developer's Forum for Windows
Topic: c/c++: why do i do not have input?
Replies: 10
Views: 22983

really thanx. i will try to use it in a windows app than a console app. i think then it will run. i know 3d mice are used for max and maya and stuff, but i want to use it in games....("why not use a msg bump?") and on the other side i want to share the interface - the end-user-programmer s...
by ben0bi
Wed Oct 24, 2007 1:47 pm
Forum: Developer's Forum for Windows
Topic: c/c++: why do i do not have input?
Replies: 10
Views: 22983

sorry

i am sorry about this angry post. look, i wanted to do this with the demo source code. but there are so much not-relevant things, where should i know what i need and what not? i had to find out myself how to setup this atl or com things to use this comptr and so on. i only want to do a simple interf...
by ben0bi
Wed Oct 24, 2007 10:41 am
Forum: Developer's Forum for Windows
Topic: c/c++: why do i do not have input?
Replies: 10
Views: 22983

whats that for an answer "would be just no fun" if you cannot give away some good api documentation, you do not have to wonder why no one codes some plugins for your hardware. i am very angry about this, i just want a fuckin interface and all you say is "..would be just no fun".....
by ben0bi
Wed Oct 24, 2007 8:11 am
Forum: Developer's Forum for Windows
Topic: c/c++: why do i do not have input?
Replies: 10
Views: 22983

c/c++: why do i do not have input?

hello, i wrote an interface in c/c++ for the "small" spacemouse i used the code from the pollcube example in VS C/C++ 2005 Environment. all works but it does not work. it initializes and de-initializes but there is no input from the mouse. :( i am in a programming course and even my tutors...
by ben0bi
Tue Oct 23, 2007 2:25 am
Forum: Windows Discussion Forum
Topic: Kein input obwohls richtig gecoded ist...
Replies: 1
Views: 7422

Kein input obwohls richtig gecoded ist...

hallo, ich wollte ein c/c++ interface schreiben für die spacemouse. ich habe so ziemlich alles genau nach anleitung gemacht und den samplecode soweit als möglich gecopy/pastet. (von cube3dpolling) alles funktioniert wunderbar, nur gibt die maus einfach keinen input zurück. cube3dpolling geht aber, a...