Check for free student version?
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 12/06/2012 at 03:01, xxxxxxxx wrote:
thx!
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 12/06/2012 at 15:49, xxxxxxxx wrote:
The feature comparison page has:
"Support of serial number dependant plugins"
...disabled / unavailable with the free student version. Does that mean that plugins using the "SNHookClass" are just not called/loaded?
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 01:01, xxxxxxxx wrote:
Originally posted by xxxxxxxx
...disabled / unavailable with the free student version. Does that mean that plugins using the "SNHookClass" are just not called/loaded?
Good call, apparently SNHookClass hook is ignored by the student version. You need to check for student versions outside, e.g. in PluginStart().
cheers,
Matthias -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 02:31, xxxxxxxx wrote:
I guess my question/speculation was more to the point that if you do use the SNHookClass - for serialized license key control - that you wouldn't need to worry about it with the Student version, since the plugin would simply fail to load (assuming that you didn't want it to load).
ie. Inside the PluginMessage() code, when: id == C4DPL_INIT_SYS, then you normally call resource.Init(), check for version type and (if appropriate) call your RegisterPLGNSerial() routine. That in turn calls (for example) pPlgSerial->Register(_SERIAL_PLUGID, SNFLAG_OWN);
...that call to (SNHookClass) 'Register()' should fail (return false) with the Student version, so your plugin would just not load (assuming you trickled the 'false' return back through to the C4DPL_INIT_SYS message response).
Does that sound correct?
EDIT: To be more specific... I'm assuming if you reply 'false' to the C4DPL_INIT_SYS message, that your PluginStart() routine would never be called... ?
If you do want to have your (serialized) plugin work with the Student version, you'd have to look for the Student version type and use some other method of serializing your license key.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 02:34, xxxxxxxx wrote:
Ah, ok. I need to check this. Will post my findings.
cheers,
Matthias -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 02:56, xxxxxxxx wrote:
I have a question. Currently my plugins check for this condition:
else if (stype & (SYSTEMINFO_SAVABLEDEMO|SYSTEMINFO_SAVABLEDEMO_ACTIVE)) { GePrint("C4D Savable Demo"); serial = FALSE; }
Will I need to change all of them to allow use of my plugins in the Student version? And, does this only cover R13 (and possibly R14)? Which exact version of R13, btw?
Thanks,
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 03:09, xxxxxxxx wrote:
The student version adds only the SYSTEMINFO_STUDENT condition. SYSTEMINFO_SAVABLEDEMO_ACTIVE & SYSTEMINFO_STUDENT indicates an activated student version.
cheers,
Matthias -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 04:00, xxxxxxxx wrote:
Okay. So I also need to check for SYSTEMINFO_SAVABLEDEMO|SYSTEMINFO_STUDENT in my plugins?
Thanks,
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 04:36, xxxxxxxx wrote:
Yes, otherwise it will be handled like an activated demoversion.
cheers,
Matthias -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 06:18, xxxxxxxx wrote:
Originally posted by xxxxxxxx
I guess my question/speculation was more to the point that if you do use the SNHookClass - for serialized license key control - that you wouldn't need to worry about it with the Student version, since the plugin would simply fail to load (assuming that you didn't want it to load).
The free student version behaves like a demo version with the additional SYSTEMINFO_STUDENT bit. So it really depends on your serialization system if plugins are loaded or not.
cheers,
Matthias -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 08:40, xxxxxxxx wrote:
Originally posted by xxxxxxxx
The free student version behaves like a demo version with the additional SYSTEMINFO_STUDENT bit. So it really depends on your serialization system if plugins are loaded or not.cheers,Matthias
Thanks - I should be good then - since my (currently posted) plugins don't currently load in active demo versions - but it seems like that kinda screws Robert if (for example) he wanted to treat an 18-month activated free student/demo version separately from a 45-day free trial demo version.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 09:27, xxxxxxxx wrote:
What I meant is that the free student version behaves the same as the demo version, except the SYSTEMINFO_STUDENT bit allows you to differentiate between demo and student version.
cheers,
Matthias -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 09:39, xxxxxxxx wrote:
Originally posted by xxxxxxxx
...except the SYSTEMINFO_STUDENT bit allows you to differentiate between demo and student version...
...in any "future" (or re-builds of existing) plugins you publish.
EDIT: sorry, I was intentionally trying to be a little vague on this point, but to get to the point, any existing (already published) plugins will not know the difference in a 45-day trial demo version and a 18-month free student version.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 09:45, xxxxxxxx wrote:
Originally posted by xxxxxxxx
EDIT: sorry, I was intentionally trying to be a little vague on this point, but to get to the point, any existing (already published) plugins will not know the difference in a 45-day trial demo version and a 18-month free student version.
Yes, that's correct.
cheers,
Matthias -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 09:54, xxxxxxxx wrote:
As mentioned, it won't affect me personally and maybe this is too late to change (???) but effectively, Maxon has taken a publishing decision out of the hands of 3rd-party developers by implementing it this way (they've effectively forced a retroactive situation/publishing model on us - instead of allowing for a proactive decision to be made).
It boils down to a question (what normally would be the 3rd-party developers' decision) of whether you want to "provide your plugins for free to students" ... or not.
Each developer may have their own opinions - even on a per-plugin basis - but Maxon has just "given away" all those plugins, making that decision for them.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/06/2012 at 10:03, xxxxxxxx wrote:
Thanks for your feedback Keith. I will forward your concerns to MAXON product managment.
cheers,
Matthias