Author Topic: Any SCI games with mouse-draggable objects in a dialog?  (Read 5901 times)

0 Members and 1 Guest are viewing this topic.

Offline troflip

Any SCI games with mouse-draggable objects in a dialog?
« on: November 07, 2016, 10:33:00 AM »
Can anyone think of any examples of this in Sierra's catalog? (in any version of SCI). It's fairly straightforward to do if the objects are part of the room (just make them part of the cast), but not so obvious if you want this in a popup dialog...


Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline Kawa

Re: Any SCI games with mouse-draggable objects in a dialog?
« Reply #1 on: November 07, 2016, 10:41:52 AM »
You're thinking of things like slider thumbs?

Offline troflip

Re: Any SCI games with mouse-draggable objects in a dialog?
« Reply #2 on: November 07, 2016, 10:50:26 AM »
Hmm, that's a good point, there are those. I'm thinking more about puzzle pieces, for instance. Using DrawCel and the Graph functions, I'm having trouble coming up with something that allows dragging one "object" over another, and doesn't flicker or leave turds on the background.
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline Kawa

Re: Any SCI games with mouse-draggable objects in a dialog?
« Reply #3 on: November 07, 2016, 11:32:43 AM »
Doctor Mind comes to brain, but that's not in a dialog.

Offline troflip

Re: Any SCI games with mouse-draggable objects in a dialog?
« Reply #4 on: November 07, 2016, 12:42:32 PM »
My "Explore SCI" SCI 1.1 demo game does it too, but not in a dialog. Separate room with Props that you drag around. Easy to do (but in my current scenario I don't want to use a separate room).
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline Collector

Re: Any SCI games with mouse-draggable objects in a dialog?
« Reply #5 on: November 07, 2016, 12:45:14 PM »
Seems like when they did something like this they used a cursor rather than a view, like in the inventory when combining items where you click on one item and it changes the cursor to a representation of that inventory item to click on another item.
KQII Remake Pic

Offline troflip

Re: Any SCI games with mouse-draggable objects in a dialog?
« Reply #6 on: November 07, 2016, 12:56:34 PM »
True, but in my scenario the objects need to be spatially positioned relative to each other (like puzzle pieces). So that doesn't really work for that (not to mention this is SCI0, and cursors don't have color).
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline troflip

Re: Any SCI games with mouse-draggable objects in a dialog?
« Reply #7 on: November 07, 2016, 06:52:53 PM »
The SCI 1.1 slider control was basically what I was looking for. The key is that it does this:

Code: [Select]
(= oldPicNotValid (PicNotValid))
(PicNotValid TRUE)

then draws what it wants with Graph/DrawCel, etc...

then does:

Code: [Select]
(PicNotValid oldPicNotValid)

That makes things behave nicely.
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline Kawa

Re: Any SCI games with mouse-draggable objects in a dialog?
« Reply #8 on: November 07, 2016, 09:33:58 PM »
So the slider thumb remark was actually kinda helpful? Hmm.

Offline troflip

Re: Any SCI games with mouse-draggable objects in a dialog?
« Reply #9 on: November 08, 2016, 01:54:34 AM »
Yes, it was very helpful  :)
Check out my website: http://icefallgames.com
Groundhog Day Competition


SMF 2.0.19 | SMF © 2021, Simple Machines
Simple Audio Video Embedder

Page created in 0.025 seconds with 23 queries.