HiddenChest RGSS Player Executable
(12-26-2024, 03:43 AM)kyonides Wrote: As I said, HiddenChest default font setting is to not squeeze the string of text.
Not gonna change EVER, yet, you can set Font#no_squeeze to false to make it squeeze once again.

It appears Font#no_squeeze matters little...

Edits performed to draw_actor_name to test the effectiveness of the Font.no_squeeze feature
  def draw_actor_name(actor, x, y)
    self.contents.font.color = normal_color
    self.contents.font.no_squeeze = true
    name = "To be or not to be, that is the question."
    self.contents.draw_text(x, y, 120, 32, name)
  end

  def draw_actor_name(actor, x, y)
    self.contents.font.color = normal_color
    self.contents.font.no_squeeze = false
    name = "To be or not to be, that is the question."
    self.contents.draw_text(x, y, 120, 32, name)
  end

Neither version returns the text compression that is innate with the default XP-to-VXAce systems and what users would expect if they were migrating their projects to HiddenChest.

I will note here that you DID say that "you can set Font#no_squeeze to false to make it squeeze once again".  However, I went to the Github and found this:

Font Class
  • It now lets you use several new methods that can handle boolean values (true or false) and sizes (Integer)
    • underline - boolean
    • strikethrough or strikethru - boolean
    • no_squeeze - boolean, default value: false
    • outline_size - Integer 1 through 8
    • shadow_size - Integer 1 through 3
    • shadow_color - Color in RGBA format
    • outline, out_color & outline_color are available for RMXP & RMVX as well.

According to your Github, I should not have need to set the Font.no_squeeze value at all as it should already be set to false, a value you have indicated to return the font compression anyway.

There is an issue here.

Upon repair of this feature, might I recommend:
  • Font.default_no_squeeze 

To be in keeping with values such as Font.default_size, Font.default_bold, et al.


In any event, I also stated...
(12-24-2024, 04:43 PM)DerVVulfman Wrote: Two points:

  1. Unlike the previous June iteration which passed my Anti-Virus, the recent October 2024 edition hasn't... or hadn't as yet.  As it wasn't cleared, but gave no definite answer as why, the alert said it was sending the contents to its LAB for further inspection which could take hours.
     
  2. Using the same project that has run with the June edition, I received the immediate pop up "Error creating OpenAL context" which also shut down the application. I need add that this is with both the .exe and with the .dll files that were packaged.

Your current version is itself broken.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)

[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png]    [Image: liM4ikn.png]    [Image: fdzKgZA.png]    [Image: sj0H81z.png]
[Image: QL7oRau.png]    [Image: uSqjY09.png]    [Image: GAA3qE9.png]    [Image: 2Hmnx1G.png]    [Image: BwtNdKw.png%5B]
  Above are clickable links
Reply }


Messages In This Thread
HiddenChest RGSS Player Executable - by kyonides - 11-21-2018, 10:44 PM
RE: MKXPPLUS RGSS Player Executable - by kyonides - 11-22-2018, 06:33 AM
RE: MKXPPLUS RGSS Player Executable - by kyonides - 11-25-2018, 12:17 AM
RE: MKXPPLUS RGSS Player Executable - by kyonides - 11-25-2018, 05:48 AM
RE: MKXPPLUS RGSS Player Executable - by kyonides - 11-26-2018, 12:55 AM
RE: MKXPPLUS RGSS Player Executable - by kyonides - 11-26-2018, 04:42 AM
RE: MKXPPLUS RGSS Player Executable - by kyonides - 11-27-2018, 08:56 AM
RE: MKXPPLUS RGSS Player Executable - by kyonides - 11-28-2018, 11:31 AM
RE: MKXPPLUS RGSS Player Executable - by kyonides - 11-29-2018, 05:10 AM
RE: MKXPPLUS RGSS Player Executable - by kyonides - 12-01-2018, 07:15 AM
RE: MKXPPLUS RGSS Player Executable - by Mel - 12-01-2018, 11:11 AM
RE: MKXPPLUS RGSS Player Executable - by kyonides - 12-06-2018, 05:25 AM
RE: MKXPPLUS RGSS Player Executable - by Mel - 12-07-2018, 12:17 AM
RE: MKXPPLUS RGSS Player Executable - by kyonides - 12-07-2018, 06:20 AM
RE: HiddenChest RGSS Player Executable - by Mel - 12-08-2018, 09:55 AM
RE: HiddenChest RGSS Player Executable - by KDC - 03-23-2019, 02:47 AM
RE: HiddenChest RGSS Player Executable - by KDC - 03-26-2019, 12:16 AM
RE: HiddenChest RGSS Player Executable - by KDC - 03-26-2019, 05:23 AM
RE: HiddenChest RGSS Player Executable - by KDC - 03-26-2019, 05:39 AM
RE: HiddenChest RGSS Player Executable - by KDC - 03-26-2019, 06:24 AM
RE: HiddenChest RGSS Player Executable - by KDC - 03-26-2019, 06:59 AM
RE: HiddenChest RGSS Player Executable - by KDC - 03-26-2019, 09:00 PM
RE: HiddenChest RGSS Player Executable - by Mel - 06-26-2019, 06:12 PM
RE: HiddenChest RGSS Player Executable - by Mel - 06-26-2019, 10:57 PM
RE: HiddenChest RGSS Player Executable - by Mel - 06-27-2019, 08:49 AM
RE: HiddenChest RGSS Player Executable - by KDC - 07-02-2019, 10:09 PM
RE: HiddenChest RGSS Player Executable - by KDC - 07-03-2019, 03:55 PM
RE: HiddenChest RGSS Player Executable - by Mel - 12-11-2019, 11:38 PM
RE: HiddenChest RGSS Player Executable - by Mel - 03-07-2023, 01:39 PM
RE: HiddenChest RGSS Player Executable - by Tepe - 12-10-2024, 07:38 PM
RE: HiddenChest RGSS Player Executable - by Tepe - 12-11-2024, 12:41 AM
RE: HiddenChest RGSS Player Executable - by DerVVulfman - 12-26-2024, 04:11 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Neko RMXP Player for Android JayRay 2 8,327 10-05-2014, 03:46 AM
Last Post: DerVVulfman
   ARGSS - Remaking RGSS/2 Player vgvgf 13 22,982 04-21-2010, 04:34 AM
Last Post: vgvgf



Users browsing this thread: 12 Guest(s)