[00:55] ludde (~b@host.62.65.106.155.bitcom.se) left irc: Ping timeout: 240 seconds [01:15] Joefish (~Joefish@p200300764F3CF100A9CEE4AC33F5E466.dip0.t-ipconnect.de) left irc: Ping timeout: 245 seconds [01:16] Joefish (~Joefish@p200300764F05A000B079D9C35D1EDC23.dip0.t-ipconnect.de) joined #scummvm. [01:16] #scummvm: mode change '+v Joefish' by ChanServ!ChanServ@services. [01:23] SylvainTV (~Sylvain@LFbn-LIL-1-312-132.w81-49.abo.wanadoo.fr) left irc: Read error: Connection reset by peer [01:53] DominusExult (~dominus@unaffiliated/dominus) joined #scummvm. [01:56] Dominus (~dominus@unaffiliated/dominus) left irc: Ping timeout: 260 seconds [01:56] Nick change: DominusExult -> Dominus [02:17] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) left irc: Ping timeout: 276 seconds [02:18] balrog (~balrog@unaffiliated/balrog) left irc: Quit: Bye [02:19] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) joined #scummvm. [02:25] balrog (~balrog@unaffiliated/balrog) joined #scummvm. [02:48] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) left irc: Ping timeout: 245 seconds [03:00] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) joined #scummvm. [03:05] GitHub37 (GitHub37@gateway/service/github.com/x-nkzztvhwnvaonyld) joined #scummvm. [03:05] [scummvm] criezy pushed 1 new commit to master: https://git.io/f49tq [03:05] scummvm/master 1a097b1 Thierry Crozat: I18N: Regenerate translations data file [03:05] GitHub37 (GitHub37@gateway/service/github.com/x-nkzztvhwnvaonyld) left #scummvm. [03:13] I've noticed that the position of the mouse cursor can end up higher than the screen resolution. I'd expect the mouse's x-position to range from 0-319 in star trek, but it actually ranges from 0-320. Giving it a range of 321 pixels. [03:13] Is this normal? [03:24] digitall (~digitall@unaffiliated/digitall) joined #scummvm. [03:24] #scummvm: mode change '+o digitall' by ChanServ!ChanServ@services. [03:28] Drenn: ping? You asked about mouse co-ords? [03:28] yeah, do you know anything about that? [03:29] We I assume you mean a MouseMove or similar event coming back into the EventManager? [03:29] https://github.com/scummvm/scummvm/blob/master/common/events.h#L116 [03:29] Either from a mousemove event or from calling getMousePos [03:29] or a call to getMousePos() ? https://github.com/scummvm/scummvm/blob/master/common/events.h#L412 [03:29] yeah [03:30] Hmm... As the comment says there, it should be limited to "the coordinate system of the screen area as defined by the most recent call to initSize()." [03:31] so it shouldn't get as high as 320 [03:31] maybe I should try on another platform, I'm running linux [03:32] https://github.com/scummvm/scummvm/blob/master/common/system.h#L635 is the call there... [03:33] Well, it is slightly unclear, but rect.h does not include the right and bottom IIRC [03:33] This is the OSystem layer interface in common/system.h which is the borderline between the common / engine code and the backend code ... so while it _should_ be within the screen size ... backend are responsible for doing that :| [03:34] I'm calling initgraphics, which calls initSize. They don't take rects as parameters, so I don't see that being part of the issue. [03:36] sounds like it might be a bug in the linux backend then. I'll try setting up scummvm on windows to try and confirm. [03:36] Sorry, I meant that there is always an issue with rectangle regions as to whether they include the right / bottom side or not . Our convention is that they do not ... Since otherwise 0 to 320, ends up with 321 pixels... not 320 etc. [03:36] See https://github.com/scummvm/scummvm/blob/master/common/rect.h#L84 [03:37] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) left irc: Ping timeout: 256 seconds [03:37] Odd... I am running Linux too and if this is using the SDL backend, this should not really happen. See the CLIP calls here: https://github.com/scummvm/scummvm/blob/master/backends/graphics/sdl/sdl-graphics.cpp#L184 [03:37] Hence why also I mentioned about rect conventions for our codebase :) [03:38] Since the drawrect there :) [03:38] I ran into that issue myself, since star trek uses the opposite convention :) [03:38] Argh ... Little Endian vs. Big Endian, Left vs. Right handed... Perennial issues :) [03:39] It is all fine as long as we know which convention we are using and try to keep the same one... and if not, COMMENT... and convert to the nominal one at the engine boundaries ;-) [03:41] Drenn: It might be helpful to compile in the https://github.com/scummvm/scummvm/tree/master/engines/testbed engine and do some testing with that. If that doesn't indicate the issue, it's code should be improved :) [03:41] testbed is designed as an test engine for backends. [03:42] https://github.com/scummvm/scummvm/blob/master/engines/testbed/events.cpp#L131 looks useful to you :) [03:42] I'll try messing with that, thanks [03:43] No problem... If you have improvements for testbed, feel free to drop a PR on that :) [03:44] P.S. I have copies of both Judgement Rites and 25th Anniversary... as I played them both back in the day. Kudos on the damn good progress and if you want some playtesting at some point, I am happy to :) [03:44] Admittedly in my copious free time :) [03:44] But I need something to distract me from work at times :) [03:46] cool, I'll let you know when it's ready for some playtesting [03:46] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) joined #scummvm. [04:06] Anyway, ttfn... Good luck :) [04:07] digitall (digitall@unaffiliated/digitall) left #scummvm. [04:28] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) left irc: Ping timeout: 256 seconds [04:29] aha, the mouse only goes out of range when the graphics scaler is at least 2x [04:30] SupSuper (~SupSuper@openxcom/dev/supsuper) left irc: Quit: Rip [04:34] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) joined #scummvm. [04:35] rounding issue? [04:37] probably. The bounding checks that digitall pointed out were for the scaled coordinates, not the virtual coordinates. [04:56] GitHub127 (GitHub127@gateway/service/github.com/x-ewqnwxleueojiqve) joined #scummvm. [04:56] [scummvm] Drenn1 opened pull request #1227: SDL: Clip mouse range in convertWindowToVirtual (master...mouse-range-fix) https://git.io/f49mN [04:56] GitHub127 (GitHub127@gateway/service/github.com/x-ewqnwxleueojiqve) left #scummvm. [05:15] GitHub170 (GitHub170@gateway/service/github.com/x-qluerupwfqhlaamf) joined #scummvm. [05:15] [scummvm] eriktorbjorn opened pull request #1228: SCI: Use LarryScale in games that support it, not just LSL7 (master...larryscale) https://git.io/f49Yc [05:15] GitHub170 (GitHub170@gateway/service/github.com/x-qluerupwfqhlaamf) left #scummvm. [05:16] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) left irc: Ping timeout: 256 seconds [05:22] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) joined #scummvm. [05:35] delacroix (~delacroix@2a02:810c:640:2500:21e:2aff:fe47:c90f) left irc: Quit: ZNC - http://znc.in [05:38] delacroix (~delacroix@ip5f59014d.dynamic.kabel-deutschland.de) joined #scummvm. [05:51] rootfather (~lotharsm@p20030006137EFA306DF4D53F6E50AD3A.dip0.t-ipconnect.de) left irc: Changing host [05:51] rootfather (~lotharsm@unaffiliated/rootfather) joined #scummvm. [05:51] #scummvm: mode change '+o rootfather' by ChanServ!ChanServ@services. [06:03] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) left irc: Ping timeout: 256 seconds [06:11] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) joined #scummvm. [06:21] Begasus (~begasus@ptr-4p6jpip2r2e1z2d9i4b.18120a2.ip6.access.telenet.be) joined #scummvm. [06:23] ldevulder (~ldevulder@176.167.221.90) joined #scummvm. [06:24] Begas_VBox (~Begasus@d54c3c8c2.access.telenet.be) joined #scummvm. [06:50] Begas_VBox (~Begasus@d54c3c8c2.access.telenet.be) left irc: Read error: Connection reset by peer [06:53] Begasus (~begasus@ptr-4p6jpip2r2e1z2d9i4b.18120a2.ip6.access.telenet.be) left irc: Ping timeout: 256 seconds [06:54] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) left irc: Ping timeout: 276 seconds [06:57] good morning everybody [06:58] Begasus (~begasus@ptr-4p6jpimtezcc6wvbn9r.18120a2.ip6.access.telenet.be) joined #scummvm. [07:04] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) joined #scummvm. [07:09] LittleToonCat (~littlecat@156.57.254.215) left irc: Remote host closed the connection [07:17] Begas_VBox (~Begasus@d54C3C8C2.access.telenet.be) joined #scummvm. [07:29] Strangerke|work (566b7b3a@gateway/web/freenode/ip.86.107.123.58) joined #scummvm. [07:29] hi guys [07:30] hi Strangerke|work [07:30] madmoose (~Hat@chef.nerp.net) joined #scummvm. [07:30] #scummvm: mode change '+o madmoose' by ChanServ!ChanServ@services. [07:48] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) left irc: Ping timeout: 255 seconds [07:54] macdude22 (~macdude22@2604:2d80:4035:8ce0:88b0:9bdd:9c2c:4e94) joined #scummvm. [08:04] _sev (~sev@scummvm/undead/sev) left irc: Quit: This computer has gone to sleep [08:05] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) joined #scummvm. [08:18] _sev (~sev@d158167.upc-d.chello.nl) joined #scummvm. [08:18] _sev (~sev@d158167.upc-d.chello.nl) left irc: Changing host [08:18] _sev (~sev@scummvm/undead/sev) joined #scummvm. [08:18] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [08:22] _sev (~sev@scummvm/undead/sev) left irc: Client Quit [08:22] _sev (~sev@d158167.upc-d.chello.nl) joined #scummvm. [08:22] _sev (~sev@d158167.upc-d.chello.nl) left irc: Changing host [08:22] _sev (~sev@scummvm/undead/sev) joined #scummvm. [08:22] #scummvm: mode change '+o _sev' by ChanServ!ChanServ@services. [08:23] ludde (~b@host.62.65.106.155.bitcom.se) joined #scummvm. [08:52] Begas_VBox (~Begasus@d54C3C8C2.access.telenet.be) left irc: Read error: Connection reset by peer [08:54] Begasus (~begasus@ptr-4p6jpimtezcc6wvbn9r.18120a2.ip6.access.telenet.be) left irc: Ping timeout: 256 seconds [08:56] Begasus (~begasus@ptr-4p6jpinmbvodh1pcxan.18120a2.ip6.access.telenet.be) joined #scummvm. [09:04] Begas_VBox (~Begasus@d54c3c8c2.access.telenet.be) joined #scummvm. [09:07] Lightkey (~Darklock@p200300F693C1DA9522CF30FFFE083718.dip0.t-ipconnect.de) left irc: Ping timeout: 255 seconds [09:13] whiterandrek (~andrei@ppp-109-104-179-20.wildpark.net) joined #scummvm. [09:17] ignalina (~pettersjo@h-238-27.A639.priv.bahnhof.se) joined #scummvm. [09:17] Drenn (~Drenn@toroon0713w-lp130-04-69-158-59-55.dsl.bell.ca) left irc: Ping timeout: 268 seconds [09:20] Lightkey (~Darklock@p200300F693C1DA1222CF30FFFE083718.dip0.t-ipconnect.de) joined #scummvm. [09:32] criezy|Work (a5e15055@gateway/web/freenode/ip.165.225.80.85) joined #scummvm. [09:32] #scummvm: mode change '+o criezy|Work' by ChanServ!ChanServ@services. [09:32] Begas_VBox (~Begasus@d54c3c8c2.access.telenet.be) left irc: Read error: No route to host [09:34] Begasus_ (~begasus@ptr-4p6jpim19zkdwa0en17.18120a2.ip6.access.telenet.be) joined #scummvm. [09:36] Begasus (~begasus@ptr-4p6jpinmbvodh1pcxan.18120a2.ip6.access.telenet.be) left irc: Ping timeout: 256 seconds [09:36] Nick change: Begasus_ -> Begasus [09:39] Begas_VBox (~Begasus@d54c3c8c2.access.telenet.be) joined #scummvm. [10:04] criezy|Work (a5e15055@gateway/web/freenode/ip.165.225.80.85) left irc: Ping timeout: 260 seconds [10:10] stroggoff (~Praetoria@athedsl-227087.home.otenet.gr) joined #scummvm. [10:23] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) left irc: Ping timeout: 256 seconds [10:24] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) joined #scummvm. [10:39] criezy|Work (a5e15055@gateway/web/freenode/ip.165.225.80.85) joined #scummvm. [10:39] #scummvm: mode change '+o criezy|Work' by ChanServ!ChanServ@services. [11:07] raziel- created ticket #10581: MADS: Save game loading assertion (https://bugs.scummvm.org/ticket/10581) [11:11] raziel- created ticket #10582: SCI: KQ6 - Cursors broken (https://bugs.scummvm.org/ticket/10582) [11:15] raziel- created ticket #10583: SCI: Larry6 - Hourglass cursor cut off (https://bugs.scummvm.org/ticket/10583) [11:16] raziel- created ticket #10584: SCI: Larry7 - Animation slows down when inventory window is open (https://bugs.scummvm.org/ticket/10584) [11:26] criezy|Work (a5e15055@gateway/web/freenode/ip.165.225.80.85) left irc: Ping timeout: 260 seconds [11:33] ignalina (~pettersjo@h-238-27.A639.priv.bahnhof.se) left irc: Quit: ignalina [11:47] delacroix (~delacroix@ip5f59014d.dynamic.kabel-deutschland.de) left irc: Ping timeout: 245 seconds [11:49] delacroix (~delacroix@2a02:810c:640:2500:21e:2aff:fe47:c90f) joined #scummvm. [12:11] Nick change: antlarr2 -> antlarr [12:27] Yuv422 (~Yuv422@60-240-103-165.tpgi.com.au) joined #scummvm. [12:43] GitHub30 (GitHub30@gateway/service/github.com/x-dmpcbkvtqogjwfye) joined #scummvm. [12:43] [scummvm] yuv422 opened pull request #1229: Illusions Engine. (master...illusions) https://git.io/f49X5 [12:43] GitHub30 (GitHub30@gateway/service/github.com/x-dmpcbkvtqogjwfye) left #scummvm. [12:50] ignalina (~pettersjo@h-238-27.A639.priv.bahnhof.se) joined #scummvm. [13:02] Littleboy (~littleboy@pool-108-7-223-151.bstnma.fios.verizon.net) joined #scummvm. [13:02] #scummvm: mode change '+o Littleboy' by ChanServ!ChanServ@services. [13:03] Yuv422: awesome! [13:03] LittleToonCat (~littlecat@156.57.254.215) joined #scummvm. [13:03] :) [13:15] bonki closed ticket #10581: MADS: Save game loading assertion (https://bugs.scummvm.org/ticket/10581) [13:25] <_sev> Yuv422: yay! [13:29] wohoo, new engine incoming [13:32] whiterandrek (~andrei@ppp-109-104-179-20.wildpark.net) left irc: Quit: Leaving [13:36] criezy|Work (a5e15055@gateway/web/freenode/ip.165.225.80.85) joined #scummvm. [13:36] #scummvm: mode change '+o criezy|Work' by ChanServ!ChanServ@services. [13:39] bed time, cya :) [13:39] Yuv422 (~Yuv422@60-240-103-165.tpgi.com.au) left irc: Quit: Yuv422 [13:40] Yuv422 (~Yuv422@60-240-103-165.tpgi.com.au) joined #scummvm. [13:40] Yuv422 (~Yuv422@60-240-103-165.tpgi.com.au) left irc: Client Quit [13:44] rootfather_ (~lotharsm@p20030006137EFA30D56210BE69C6E580.dip0.t-ipconnect.de) joined #scummvm. [13:46] rootfather (~lotharsm@unaffiliated/rootfather) left irc: Ping timeout: 245 seconds [13:51] SupSuper (~SupSuper@openxcom/dev/supsuper) joined #scummvm. [14:16] Nick change: rootfather_ -> rootfather [14:17] rootfather (~lotharsm@p20030006137EFA30D56210BE69C6E580.dip0.t-ipconnect.de) left irc: Changing host [14:17] rootfather (~lotharsm@unaffiliated/rootfather) joined #scummvm. [14:17] #scummvm: mode change '+o rootfather' by ChanServ!ChanServ@services. [15:07] ccawley2011 (518ddeac@gateway/web/freenode/ip.81.141.222.172) joined #scummvm. [15:43] stroggoff (~Praetoria@athedsl-227087.home.otenet.gr) left irc: Quit: Leaving [15:52] ldevulder_ (~ldevulder@176.167.204.44) joined #scummvm. [15:53] waltervn (~waltervn@scummvm/undead/waltervn) joined #scummvm. [15:53] #scummvm: mode change '+o waltervn' by ChanServ!ChanServ@services. [15:56] ldevulder (~ldevulder@176.167.221.90) left irc: Ping timeout: 264 seconds [15:56] ny00123 (~ny00123@5.102.239.149) joined #scummvm. [16:15] ignalina (~pettersjo@h-238-27.A639.priv.bahnhof.se) left irc: Quit: ignalina [16:20] ajax16384 (~User@109.60.130.33) joined #scummvm. [16:20] #scummvm: mode change '+o ajax16384' by ChanServ!ChanServ@services. [16:38] whiterandrek (~andrei@ppp-109-104-179-20.wildpark.net) joined #scummvm. [17:10] Begasus (~begasus@ptr-4p6jpim19zkdwa0en17.18120a2.ip6.access.telenet.be) left irc: Ping timeout: 256 seconds [17:10] Begas_VBox (~Begasus@d54c3c8c2.access.telenet.be) left irc: Ping timeout: 264 seconds [17:24] Begasus (~begasus@ptr-4p6jpio1jqlaxgqhwaa.18120a2.ip6.access.telenet.be) joined #scummvm. [17:26] awesome, Illusions made some gems! [17:42] Begasus (~begasus@ptr-4p6jpio1jqlaxgqhwaa.18120a2.ip6.access.telenet.be) left irc: Ping timeout: 276 seconds [17:43] Begasus (~begasus@ptr-4p6jpio1jqlaxgqhwaa.18120a2.ip6.access.telenet.be) joined #scummvm. [17:46] Farmboy0 (~quassel@p4FD34020.dip0.t-ipconnect.de) joined #scummvm. [17:46] Farmboy0 (~quassel@p4FD34020.dip0.t-ipconnect.de) left irc: Changing host [17:46] Farmboy0 (~quassel@xoreos/farmboy0) joined #scummvm. [17:49] SylvainTV (~Sylvain@LFbn-LIL-1-312-132.w81-49.abo.wanadoo.fr) joined #scummvm. [17:49] #scummvm: mode change '+o SylvainTV' by ChanServ!ChanServ@services. [18:05] whiterandrek (~andrei@ppp-109-104-179-20.wildpark.net) left irc: Quit: Leaving [18:07] Begasus (~begasus@ptr-4p6jpio1jqlaxgqhwaa.18120a2.ip6.access.telenet.be) left irc: Ping timeout: 265 seconds [18:08] Begasus (~begasus@ptr-4p6jpio1jqlaxgqhwaa.18120a2.ip6.access.telenet.be) joined #scummvm. [18:08] whiterandrek (6d68b314@gateway/web/freenode/ip.109.104.179.20) joined #scummvm. [18:23] Begasus (~begasus@ptr-4p6jpio1jqlaxgqhwaa.18120a2.ip6.access.telenet.be) left irc: Ping timeout: 256 seconds [18:24] Begasus (~begasus@ptr-4p6jpio1jqlaxgqhwaa.18120a2.ip6.access.telenet.be) joined #scummvm. [18:30] Begasus (~begasus@ptr-4p6jpio1jqlaxgqhwaa.18120a2.ip6.access.telenet.be) left irc: Ping timeout: 256 seconds [19:00] criezy|Work (a5e15055@gateway/web/freenode/ip.165.225.80.85) left irc: Quit: Page closed [19:48] waltervn (~waltervn@scummvm/undead/waltervn) left irc: Quit: Leaving [19:53] Drenn (~Drenn@toroon0713w-lp130-04-69-158-59-55.dsl.bell.ca) joined #scummvm. [20:03] criezy (~criezy@host86-180-140-43.range86-180.btcentralplus.com) joined #scummvm. [20:03] #scummvm: mode change '+o criezy' by ChanServ!ChanServ@services. [20:20] whiterandrek (6d68b314@gateway/web/freenode/ip.109.104.179.20) left irc: Quit: Page closed [20:31] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) left irc: Ping timeout: 255 seconds [20:32] Dark-Star (~quassel@2a01:238:427f:2f00:3060:fc6b:969e:dcf0) joined #scummvm. [20:33] whiterandrek (6d68b314@gateway/web/freenode/ip.109.104.179.20) joined #scummvm. [20:35] tsomi (~tsomi@ip-223.net-89-2-226.rev.numericable.fr) joined #scummvm. [20:39] hi. I'm doing some translations with scummtr, and in INDY4 there's a \016 sequence that lets you insert a non-breaking space, which is quite useful in French. I'm trying to use the same thing in MONKEY2, but I'm nore sure it exists there. Are you aware of the SCUMM games supporting this sequence? Does the sequence number change between games? Thank you. [20:39] Drenn: have you seen the comment in the forum about the random text being a result of the virus affecting Spock? [20:39] Here: http://forums.scummvm.org/viewtopic.php?t=14603 [20:41] Drenn (~Drenn@toroon0713w-lp130-04-69-158-59-55.dsl.bell.ca) left irc: Ping timeout: 256 seconds [20:53] whiterandrek (6d68b314@gateway/web/freenode/ip.109.104.179.20) left irc: Quit: Page closed [21:03] niska` (~niska@68.ip-149-56-14.net) joined #scummvm. [21:06] niska (~niska@68.ip-149-56-14.net) left irc: Quit: Leaving [21:06] Drenn (~Drenn@toroon0713w-lp130-04-69-158-59-55.dsl.bell.ca) joined #scummvm. [21:15] mwillcock (~mwillcock@88.144.31.84) joined #scummvm. [21:19] ajax16384 (~User@109.60.130.33) left irc: Read error: Connection reset by peer [21:27] mwillcock (~mwillcock@88.144.31.84) left irc: Quit: Leaving [21:28] rootfather_ (~lotharsm@p20030006137EFA30D56210BE69C6E580.dip0.t-ipconnect.de) joined #scummvm. [21:32] rootfather (~lotharsm@unaffiliated/rootfather) left irc: Ping timeout: 276 seconds [22:04] digitall (~digitall@unaffiliated/digitall) joined #scummvm. [22:04] #scummvm: mode change '+o digitall' by ChanServ!ChanServ@services. [22:05] criezy (~criezy@host86-180-140-43.range86-180.btcentralplus.com) left irc: Quit: criezy [22:12] ny00123 (~ny00123@5.102.239.149) left irc: Quit: Leaving [22:15] tsomi (~tsomi@ip-223.net-89-2-226.rev.numericable.fr) left irc: Quit: WeeChat 2.1 [22:33] is it possible to use CursorManager with animated cursors? [22:35] SupSuper: Simple answer is not that I can see. [22:36] Though not clear as common/winexe_ne and winexe_pe do support returning animated cursor resources. [22:37] I think any engines that do cursor animation, do it in the engine code by updating the cursor image at intervals. ... [22:38] well only way i can see to update the cursor image is constantly replacing the cursor, since there's no pointer to the cursor data. wouldn't that get expensive? [22:38] Unsure... Cursor images are pretty small and the dirty rect area of screen to redraw is probably limited ... so maybe not. [22:39] hello! could a game be added to the list of SLUDGE games on the wiki? http://wiki.scummvm.org/index.php/SLUDGE/Games - "The Secret of Tremendous Corporation" - https://tremendouscorp.com/ [22:39] In any case, I can't see that the common/system.h Cursor Manager API indicates it supports Animated resources... [22:40] alright thanks [22:40] dos1: Best to nudge metafox / Jennibee on forums about that I think... http://wiki.scummvm.org/index.php?title=SLUDGE/Games&action=history [22:40] Farmboy0 (~quassel@xoreos/farmboy0) left irc: Quit: http://quassel-irc.org - Chat comfortably. Anywhere. [22:41] SupSuper: No problem... Just not sure myself as not clear... best to find a game with animated cursor and take a look at that. [22:45] SupSuper: Not maybe the best example of code to follow... but Sword1 engine does animate cursors in this way i.e. the animated use cogs : https://github.com/scummvm/scummvm/blob/master/engines/sword1/mouse.cpp#L305 [22:46] digitall: thanks! [22:46] dos1: No problem. [22:50] digitall: yeah i was wondering what the advantage was of using cursor vs just blitting a sprite on screen. well as long as it's not a performance problem :) [22:53] SuperSuper: Take a look at the comments in common/system.h ... Basically the cursor images are drawn to an overlay and dirty area redraw dealt with more cleanly than drawing on the graphics screen layer... but anyway, see how you get on. [22:53] ttfn [22:53] digitall (digitall@unaffiliated/digitall) left #scummvm. [23:14] dafioram (~dafioram@pool-71-121-237-223.bltmmd.fios.verizon.net) joined #scummvm. [23:26] dafioram (~dafioram@pool-71-121-237-223.bltmmd.fios.verizon.net) left irc: Quit: Leaving [23:36] ccawley2011 (518ddeac@gateway/web/freenode/ip.81.141.222.172) left irc: Quit: Page closed [23:41] ludde (~b@host.62.65.106.155.bitcom.se) left irc: Ping timeout: 276 seconds [23:51] dafioram (~dafioram@pool-71-121-237-223.bltmmd.fios.verizon.net) joined #scummvm. [00:00] --- Tue Jun 26 2018