whitefalcon87

Newbie
Oct 24, 2021
31
10
(java:482548): Gdk-WARNING **: 00:50:23.454: XSetErrorHandler() called with a GDK error trap pushed. Don't do that.
[xcb] Unknown sequence number while processing queue
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
java: ../../src/xcb_io.c:260: poll_for_event: Assertion `!xcb_xlib_threads_sequence_lost' failed.
This keepd happening, with the amount of work I had to do to even get this game to run and to merely LAUNCH the fucking thing requires me to use the goddamn terminal really looks poorly on the developer. This is why all games should be HTML based. I heard so many good things about this one and its a barely playable wreck that crashes constantly.
 

SleepyCheepy

Newbie
Mar 27, 2019
39
33
I wish there was a difficulty that didnt scale enemies to the players level. like i want parts of the game to be hard but level scaling is just so lame and boring.
 
  • Like
Reactions: FFFFFACK

Banbasnatch

New Member
Dec 7, 2020
4
1
Is it ok to place requests?

* DP, TP, or even 'n'P (up to total stretch capacity) for all orifices and for all insertables :)

* Stepping up fingering by stages till full on fisting once a certain point is reached :)

* Sex toys and other random trash items used as penetrative sex items rather than just clothing :)

I would mod these in myself if possible but only just started looking at the code.
 

TheeSonus

Well-Known Member
Mar 30, 2020
1,456
1,550
Is it ok to place requests?
I'd presume it's fine, but I doubt anyone here has any connection to someone who works on the game, and judging by what I've read in the thread I severely doubt innoxia's ever gonna pay this thread a visit at any point in the future. Maybe if someone here is a modder, they might do it for you, but I don't really have high hopes for it.
The discord would probably be your best bet since I'm fairly sure there's modders in there that at least vaguely know how to work with the game's code, though I've also heard the discord is... not very good? Like, it's a super hugbox where if you say anything vaguely negative towards innoxia you get instantly shunned if not straight out banned. That's probably an exaggeration though (at least I really fucking hope it is), so take it with a grain of salt at the least.
 
  • Like
Reactions: Banbasnatch

jadis.luchiano

New Member
Mar 24, 2020
4
3
I'm still a-lurkin'. :) I usually check in daily, but I haven't had much to contribute lately.

Thanks, but I definitely wouldn't call myself an expert on Java, haha. No issues with the language and stuff like that, but I haven't had enough experience with its build system and overall ecosystem to go beyond "semi-confused intermediate."

As for this specific inquiry: from what I understand there are ways of making JavaFX applications work in-browser, but given LT's thirst for memory I can't imagine that working out well in this case. Even with some of the performance enhancements it still tends to make a lot of large allocations between turns, does the calculations, then releases a bunch of memory. I'm not sure that WASM engines would handle that particularly well, and it's likely that it would slam into browser memory caps in the process.
Sorry for digging up old wounds, but mayhaps you have an up-to-date solution for launching jar on Intel Macs (running Big Sur)? I'm at my wit's ends honestly.
I tried everything you've recommended in your previous replies but it's still a no go. I got Java 8, I got tons of JDKs, nothing works. It's still as if Java refuses to open a window.
Maybe you might have an insight to this?

edit:
nvm I think I got it running. was it worth it all my braincells lost? doubt it.
 
Last edited:
  • Haha
Reactions: jfmherokiller

Sarkath

Active Member
Sep 8, 2019
511
857
Sorry for digging up old wounds, but mayhaps you have an up-to-date solution for launching jar on Intel Macs (running Big Sur)? I'm at my wit's ends honestly.
When I still had my Intel Mac, I was able to get it running by installing Oracle Java 8. Since that pretty much just provides a Safari extension and doesn't register itself as a system-wide Java installation, I had to explicitly call JRE8 via terminal (or write a script to do it). Is that what you ended up having to do?

I did figure out how to create "fat" JARs for aarch64 (M1) Macs that targets newer JDK/JFX versions. I don't know enough about the Java build process to cross-compile from my Apple Silicon system, though. :x

To be honest, whenever I want to run LT I generally just run it from an IDE. It makes things significantly easier on non-Windows platforms, IMO.
 
  • Like
Reactions: jfmherokiller

sojocal

Newbie
Jun 2, 2020
76
65
(java:482548): Gdk-WARNING **: 00:50:23.454: XSetErrorHandler() called with a GDK error trap pushed. Don't do that.
[xcb] Unknown sequence number while processing queue
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
java: ../../src/xcb_io.c:260: poll_for_event: Assertion `!xcb_xlib_threads_sequence_lost' failed.
This keepd happening, with the amount of work I had to do to even get this game to run and to merely LAUNCH the fucking thing requires me to use the goddamn terminal really looks poorly on the developer. This is why all games should be HTML based. I heard so many good things about this one and its a barely playable wreck that crashes constantly.
Given that past webbased unity games nolonger work on modern browsers, i'm unsure how this fixes anything. Hell this isn't the first time webbased applications stopped working on "modern browser". For instances Flash who was on life support flat out doesn't work anymore(Unless i'm mistaken) and lets not forget one of the reason Pentagon contractors used Java(Yes, java, not javascript) in the past was because it allowed making web based applications with applets. Maybe applets still work, i honestly don't know, but has anyone checked recently?
 
Last edited:
  • Like
Reactions: LarryButz

Sarkath

Active Member
Sep 8, 2019
511
857
Maybe applets still work, i honestly don't know, but has anyone checked recently?
Pretty much all major browsers removed support for those kind of plugins, so it's highly unlikely.

It wouldn't matter much, though. Java applets ran independently of the web browser, and the browser canvas essentially just contained the applet's "window," so if it wouldn't run standalone there wasn't much of a shot of it running embedded. Older Unity "web games" did the same thing—it just used a plugin to embed the game into a browser window. It wasn't really using any actual web technology, but rather just using the browser window as a expensive rendering target.

The reason modern Unity games run is because it compiles the game logic and libraries into WebAssembly, then displays the output to the user using a WebGL canvas, so the browser is actually 100% responsible for executing the code and can do so without any plugins. For LT to work in a modern browser, a similar process would have to happen. It does look like there are technologies available that will do that, such as Webswing.

Of course, even if someone could get it running in a browser, the performance probably wouldn't be great. LT's performance depends heavily on memory speed and I can't imagine throwing an abstraction layer in the mix would lead to a fun experience, not to mention that browsers typically put strict limits on how much memory WASM applications have access to (from what I've been able to gather: 8GB for Chrome, 4GB for Edge, and 2GB for Safari and Firefox) so it would also have less room to thrash.
 
  • Like
Reactions: jfmherokiller

jadis.luchiano

New Member
Mar 24, 2020
4
3
I had to explicitly call JRE8 via terminal (or write a script to do it). Is that what you ended up having to do?
Yeah basically. Executable you shared before wasn't working for some reason and I think I also ended up with installing/uninstalling dozens of Java SDKs, SDEs, whatever.
So I had to clean up everything, reinstalled original Java8, learned how to use Terminal to manually go to folder and launch Java environment for that specific LT file. All for the sake of one single porn game.
 
  • Sad
Reactions: Sarkath

Sarkath

Active Member
Sep 8, 2019
511
857
Yeah basically. Executable you shared before wasn't working for some reason and I think I also ended up with installing/uninstalling dozens of Java SDKs, SDEs, whatever.
Was it the JAR I posted a couple of times? If so, that one only has the natives for Apple Silicon Macs bundled into it. Sorry. :(

So I had to clean up everything, reinstalled original Java8, learned how to use Terminal to manually go to folder and launch Java environment for that specific LT file. All for the sake of one single porn game.
Sounds about right, sadly. Java's original promise was "write once, run anywhere," but it never managed to achieve that in practice. :/
 

whitefalcon87

Newbie
Oct 24, 2021
31
10
Yeah basically. Executable you shared before wasn't working for some reason and I think I also ended up with installing/uninstalling dozens of Java SDKs, SDEs, whatever.
So I had to clean up everything, reinstalled original Java8, learned how to use Terminal to manually go to folder and launch Java environment for that specific LT file. All for the sake of one single porn game.
Yeah, thats way too much effort, and why the game should be ignored until ported to HTML5. If I have to open the terminal to make your game run, you have failed.
 

FireSauner0

Newbie
Nov 15, 2018
53
69
I don't even think this game can be done with static html/css. A JS implementation might run even worse than what we currently have (depending on how close the level of optimization is to what we currently have). Running it might be more convenient though.
 
Last edited:

tehlemon

Well-Known Member
Jan 26, 2021
1,224
1,556
Hey everyone! Look! We're starting the new year right on schedule!

Inno said:
Hello again, and Happy New Year!

Unfortunately, I don't have much progress to report since the last post, as I ended up having a lot more family stuff going on than expected over the Yule period. As such, I'm still a couple of weeks off having this next update finished. Sorry about how long it's taking me to get out, but I'll be back to work on it starting from tomorrow, and will do my best to get the update out to you as soon as I can!

I hope you all had a good time over the festive period, and I'll see you again in the next progress news post (which should be some time towards the end of this week). Thank you all so much for your patience and support!
Of course, the schedule isn't what's said on the blog, but what's been done for the last few years. Specifically, basically nothing from Halloween through the new years, because who wants to work during the holidays? And then something rushed out around mid January that's basically nothing. Gotta make it look like progress is coming. Then near the end of February we'll get some actual content... Incomplete content, but content.

And then we'll go ahead and get basically nothing through the summer, because who wants to work during the summer. So something will be forced out around August.

I was trying to remember examples, but I honestly can't remember if the content updates we're last year, the year before, or the year before that. But another year down, and the second area isn't even close to fleshed out. Just based on how long I've been watching the game, that's about 6 years after work started on this zone, if anyone believes that anymore.

I can't even crack any jokes about this one. At this point I'm only even checking every month or two out of stubbornness and habit lol
 

Airell

Developer of Love and Corruption
Game Developer
Aug 18, 2017
1,499
2,508
And then we'll go ahead and get basically nothing through the summer, because who wants to work during the summer.
Me. It's much more difficult to work in 36C heat, but even so I, and I believe many other devs who really want to work well, need to do it. I don't feel like summer and heat are excuse though... But it's fascinating to see all the resentment in this thread.
 

Airell

Developer of Love and Corruption
Game Developer
Aug 18, 2017
1,499
2,508
I admit it. I wish I could take 30 weeks of paid vacation each year too.
Paid vacation weeks? I've had two of these in the last 2 years. I feel this is much more of a privilege than a reality. :unsure::coffee:
 
4.10 star(s) 119 Votes