Search found 475 matches

by SamuraiCrow
Mon Nov 26, 2018 10:17 am
Forum: Newbie questions
Topic: Table with index and string
Replies: 6
Views: 4903

Re: Table with index and string

Try adding tdata.func = {} before you assign anything to it. Your double nested {{}} has no name nor index number so the inner table is immediately garbage collected. Allocation of nested tables generally produces messy code so try allocating one table at a time before assigning any members to it ju...
by SamuraiCrow
Thu Nov 22, 2018 12:14 pm
Forum: Hollywood bugs
Topic: Documentation problems
Replies: 44
Views: 70151

Re: Documentation problems

@Emeck
The value clamping on a random number generator is a remainder of a division. It will be greater or equal to zero but strictly less than the maximum value passed in.
by SamuraiCrow
Thu Nov 15, 2018 4:40 pm
Forum: SDK
Topic: New plugin: Json Parser
Replies: 19
Views: 26087

Re: New plugin: Json Parser

I appear to have opened a can of worms. I am a translator for Allanon's documentation. As such, I seem to have access to some unreleased software libraries. It's up to Allanon to release and write the original Italian documentation for me to translate and tidy up in English.
by SamuraiCrow
Mon Nov 12, 2018 10:47 am
Forum: SDK
Topic: New plugin: Json Parser
Replies: 19
Views: 26087

Re: New plugin: Json Parser

I'm pretty sure that Allanon has written a JSON parser for the patrons of his Patreon account and it's pure Hollywood so no need for plugins.
by SamuraiCrow
Wed Sep 19, 2018 5:54 pm
Forum: APK Compiler
Topic: There is an advertising screen at the start of my APKs
Replies: 10
Views: 12449

Re: There is an advertising screen at the start of my APKs

There is no demo version of the APK creator that I know of. There may be an option to set the splash screen to what you want it to look like. It would seem odd if there wasn't a way.
by SamuraiCrow
Sun Sep 16, 2018 9:44 pm
Forum: General programming
Topic: OOP framework
Replies: 26
Views: 17131

Re: OOP framework

Thanks, Bugala! I'm only including single inheritance for framework compatibility but emphasizing interface inheritance as the main expansion. Good article though.
by SamuraiCrow
Wed Sep 12, 2018 3:06 pm
Forum: Newbie questions
Topic: I looking function paint bucket type (dpaint ou ppaint)
Replies: 26
Views: 16744

Re: I looking function paint bucket type (dpaint ou ppaint)

What color are you trying to replace? Is it in a 256 color screenmode or high-color or true-color?
by SamuraiCrow
Tue Sep 11, 2018 11:22 pm
Forum: RapaGUI
Topic: Virtual file and HTMLview?
Replies: 5
Views: 5043

Re: Virtual file and HTMLview?

HTMLview cannot view PDF files. It only views HTML files (version 4 or less on Amiga-like operating systems usually). Polybios plugin can view PDF files though. If you need to view a PDF on a RapaGUI layout, use the Hollywood Bridge as indicated on https://hollywood-mal.com/docs/html/rapagui/Hollywo...
by SamuraiCrow
Tue Sep 11, 2018 3:47 pm
Forum: General programming
Topic: OOP framework
Replies: 26
Views: 17131

Re: OOP framework

UPDATE : Bugfixes implemented at the above link to GitHub. Question: What do people think about me leaving constructors out of the class.hws file? Most people I know of in C++ use the default constructor in a "factory method" anyway because it's faster and more flexible. Is there any adva...
by SamuraiCrow
Tue Sep 11, 2018 1:30 pm
Forum: Newbie questions
Topic: I looking function paint bucket type (dpaint ou ppaint)
Replies: 26
Views: 16744

Re: I looking function paint bucket type (dpaint ou ppaint)

@sinisrus
Are you assuming that support is strictly for palette displays?