Version 2.1 Has been released (NEW)
#21
Posted 19 January 2010 - 03:12 AM
Nevill, I can see that you have installed it in 800x600 , right ?
Qwinn, what resolution are you using ? Have you noticed this only with the new v2.1 with the bigger window or did it also happened with the older versions ?
#22
#23
Posted 19 January 2010 - 03:46 AM
Qwinn
#24
Posted 19 January 2010 - 04:31 AM
Edited by ghostdog, 19 January 2010 - 05:36 AM.
#25
Posted 19 January 2010 - 04:39 AM
Yes. I thought it would be a nice compromise between detalisation and usability.Nevill, I can see that you have installed it in 800x600 , right?
#26
Posted 19 January 2010 - 06:54 AM
Italian users: help test the Stivan NPC!
Author or Co-Author: WeiDU - Widescreen - Generalized Biffing - Refinements - TB#Tweaks - IWD2Tweaks - TB#Characters - Traify Tool - Some mods that I won't mention in public
Maintainer: Semi-Multi Clerics - Nalia Mod - Nvidia Fix
Code dumps: Detect custom secondary types - Stutter Investigator
If possible, send diffs, translations and other contributions using Git.
#27
Posted 19 January 2010 - 07:23 AM
#28
Posted 19 January 2010 - 10:23 AM
diff --git a/libsmall/patch_are.tpa b/libsmall/patch_are.tpa index d7013f4..4fbb448 100755 --- a/libsmall/patch_are.tpa +++ b/libsmall/patch_are.tpa @@ -20,7 +20,7 @@ COPY_EXISTING_REGEXP - GLOB ~^.*\.wed$~ ~...~ whichMax = i END END - PATCH_IF xMaxWed * 64 < x || yMaxWed * 64 < y THEN BEGIN + PATCH_IF (xMaxWed - 3) * 64 < x || (yMaxWed - 3) * 64 < y THEN BEGIN INNER_ACTION BEGIN APPEND_OUTER ~widescreen/areas~ ~%SOURCE_RES% %xMaxWed% %yMaxWed%~ END @@ -35,8 +35,8 @@ COPY ~widescreen/areas~ ~widescreen~ READ_2DA_ENTRY_FORMER areas_to_fix bfg 1 xMaxWed READ_2DA_ENTRY_FORMER areas_to_fix bfg 2 yMaxWed origArea = xMaxWed * yMaxWed - xReq = x / 64 - yReq = y / 64 + xReq = x / 64 + 3 + yReq = y / 64 + 3 PATCH_IF xReq < xMaxWed THEN BEGIN xReq = xMaxWed END
Italian users: help test the Stivan NPC!
Author or Co-Author: WeiDU - Widescreen - Generalized Biffing - Refinements - TB#Tweaks - IWD2Tweaks - TB#Characters - Traify Tool - Some mods that I won't mention in public
Maintainer: Semi-Multi Clerics - Nalia Mod - Nvidia Fix
Code dumps: Detect custom secondary types - Stutter Investigator
If possible, send diffs, translations and other contributions using Git.
#29
Posted 19 January 2010 - 11:21 AM
#30
Posted 19 January 2010 - 11:52 AM
Italian users: help test the Stivan NPC!
Author or Co-Author: WeiDU - Widescreen - Generalized Biffing - Refinements - TB#Tweaks - IWD2Tweaks - TB#Characters - Traify Tool - Some mods that I won't mention in public
Maintainer: Semi-Multi Clerics - Nalia Mod - Nvidia Fix
Code dumps: Detect custom secondary types - Stutter Investigator
If possible, send diffs, translations and other contributions using Git.
#31
Posted 20 January 2010 - 04:19 AM
Avoidable by pasuing the game before opening the window, which pauses the game as i remember. So i wonder if "pause" is a function and it would called before popping the window would it prevent it?Yep, this is the flickering I mention in the readme. It can happen when you open a window and something is moving in the visible area. Unavoidable as far as I know unfortunately.
Edited by taplonaplo, 20 January 2010 - 04:20 AM.
#32
Posted 20 January 2010 - 04:43 AM
Avoidable by pasuing the game before opening the window, which pauses the game as i remember. So i wonder if "pause" is a function and it would called before popping the window would it prevent it?
That sounds like an excellent solution.
I'm betting it'd be a case of -moving- the call to the pause function, rather than adding a call. It probably works as a toggle. If you did Pause(), pop window, Pause(), you'd probably wind up unpaused. So switching it from (window then pause) to (pause then window) would probably work great. And it would probably be easy to do that in the engine, cause it shouldn't require any more room than the original order did.
Qwinn
Edited by Qwinn, 20 January 2010 - 04:46 AM.
#33
Posted 20 January 2010 - 05:48 AM
In a resolution where you got the bug, try casting Remove Curse while in Vrischika's shop.
Epileptics beware!
Qwinn
#34
Posted 20 January 2010 - 07:00 AM
Will it fix the problem with the action menu (the one that allows you to choose weapons)? It is also flickering from time to time.That sounds like an excellent solution.
#35
Posted 20 January 2010 - 07:14 AM
Edited by scient, 20 January 2010 - 07:15 AM.
Those interested in the classic TBS game Sid Meier's Alpha Centauri / Alien Crossover should check out the unofficial patch I work on here.
#36
Posted 20 January 2010 - 07:49 AM
#37
Posted 20 January 2010 - 08:14 AM
Qwinn
#38
Posted 20 January 2010 - 08:16 AM
Scient, might want to check out the function StartStore as well.
Qwinn
Is that a place with problem or place where it's working? But I also have store location when I was testing something or other.
Those interested in the classic TBS game Sid Meier's Alpha Centauri / Alien Crossover should check out the unofficial patch I work on here.
#39
Posted 20 January 2010 - 08:37 AM
Qwinn
#40
Posted 20 January 2010 - 09:38 AM
It has the problem. It's just that it's started via that function being called from dialogues, rather than by a button in the GUI.
Qwinn
Yeah, and that problem has already been toned down by a fix from taplonaplo that enabled a small wait before the store opens. Without that fix the stuttering was severe. Of course if pause can be called instead it would hopefully be much better.