The latest XP development Kit code (for CC3) is available for download on Peter Olsen's site: http://www.pkdata.se/xp/download/xpdev-cc3.zip This should give...
894
BC Holmes
bcholmes2001
Feb 20, 2012 10:36 pm
... [...] ... Oh, awesomecakes! That's tremendously helpful! I'll poke around on the web site for the XP development kit. BCing you -- B.C. Holmes...
895
BC Holmes
bcholmes2001
Feb 20, 2012 10:48 pm
... Thanks bunches! I wasn't having much luck finding the kit on the ProFantasy site. BCing you -- B.C. Holmes \u2625...
896
BC Holmes
bcholmes2001
Feb 21, 2012 4:25 am
Thanks for all the help, guys. I've made some progress, and the XP development kit headers have done a lot to clarify the file structure. I'm currently...
897
Simon Rogers
simonjrogers
Feb 21, 2012 10:03 am
Mike can't post via yahoo groups, so he asked me to forward this: Entity type 5 is 2d Text. The "as built" reference is the ESTRUC.CPY file in the XP toolkit. ...
898
Joachim de Ravenbel
jmbravo2
Feb 23, 2012 2:34 pm
Help please! I need to get the CC3 Directory full path for an XP. What I want to do is something like : string ^FilePath = GetCC3MainDirectory() +...
899
L. Lee Saunders
saul012000
Feb 23, 2012 3:46 pm
From the FCW32.TXT file: ; =============================================================== ; GetOurPath - Get path to FCW32.EXE into RSC_OurPath ...
900
Peter Olsson
peter@...
Feb 23, 2012 7:34 pm
The easiest is to use RSC_OurPath to get a pointer: char *pMyPath = RscAdr(RSC(RSC_OurPath)); Peter *Från:* cc2-dev-l@yahoogroups.com...
901
BC Holmes
bcholmes2001
Feb 24, 2012 2:25 am
I feel like I'm making interesting progress on this exercise. I'm able to tackle a number of features that the original C sample code couldn't handle. Here's...
902
Peter Olsson
peter@...
Feb 24, 2012 8:18 am
Hi, Here are some random comments: Remapping coordinates I usually create a remap coordinate function that I use just before writing the data to the file with...
903
BC Holmes
bcholmes2001
Feb 24, 2012 2:33 pm
... Ooo! That's extremely helpful. Thanks! ... *nod* I'd noticed (and Mike also pointed this out to me in email -- thanks Mike!) the parts of the headers...
904
Peter Olsson
peter@...
Feb 24, 2012 2:57 pm
I'm a bit confused about if SVG uses Cubic B-splines or Bezier functions. There are conversions between the two though. Google turned up this paper: ...
905
Joachim de Ravenbel
jmbravo2
Feb 24, 2012 6:22 pm
Thanks a lot Peter and Larry ! If someone's interested, here is the code part I used (and it works !) (...) char * MainPath = (char*)RscAdr(RSC(RSC_OurPath)); ...
906
L. Lee Saunders
saul012000
Feb 24, 2012 6:33 pm
Ah, I see we are going the C++/cli route! From: cc2-dev-l@yahoogroups.com [mailto:cc2-dev-l@yahoogroups.com] On Behalf Of Joachim de Ravenbel Sent: Friday,...
907
BC Holmes
bcholmes2001
Feb 26, 2012 3:37 am
... Here's my latest problem with fills. Take this example; the original file is over here: ...
908
L. Lee Saunders
saul012000
Feb 26, 2012 5:32 am
... Actually the color in the FCW file is #16. That is a very light grey color. It si the first color on the left of the second row. > What am I not...
909
BC Holmes
bcholmes2001
Feb 26, 2012 1:46 pm
... Oh, interesting. I took a list of colours from the original FCW->SVG C code (specifically, in the fcw.c file). That code specified that colour number 16...
910
Peter Olsson
peter@...
Feb 27, 2012 9:45 am
There is a function called GetPalAdr() which will give you access to the current palette with the color values. A few lines from the Effects logic where I swap...
911
BC Holmes
bcholmes2001
Feb 27, 2012 3:08 pm
... Thanks for the pointers! (Uh, no pun intended). BCing you -- B.C. Holmes \u2625 http://www.bcholmes.org/ "All my life I've...
912
L. Lee Saunders
saul012000
Feb 27, 2012 4:11 pm
So, to walk through and get all the colors, All I need to do is: DWORD *CMap = GetPalAdr(); For(int c = 0; c < 256; c++) { DWORD color = (CMap[c] & 0x0000ff00)...
913
BC Holmes
bcholmes2001
Feb 28, 2012 4:23 am
... I'm certainly willing to share any code I write, but at the moment, I'm not writing anything in .Net, so I don't have any glue routines. The code I've...
914
BC Holmes
bcholmes2001
Mar 5, 2012 2:06 pm
Hey folks! I continue to have a lot of success making sense of the FCW file format. Last night, I was working on multipolys. A lot has come together, but a...
915
Peter Olsson
peter@...
Mar 6, 2012 8:22 pm
Hi I have never tried to duplicate the multipoly algorithm. I know Mike Riddle once said that it was some really clever logic behind multipolys that allowed it...
916
BC Holmes
bcholmes2001
Mar 6, 2012 11:04 pm
... Thanks for the confirmation, even if it's the sad-making answer :) BCing you -- B.C. Holmes \u2625 http://www.bcholmes.org/ "All...
917
Joachim de Ravenbel
jmbravo2
Mar 9, 2012 12:00 pm
Hi, I need to create text entities that display numeric values. 1) In which format do I need to convert the number (integer or perhaps float) ? I've tried the...
918
L. Lee Saunders
saul012000
Mar 10, 2012 2:04 am
JdR Here is the code I use to create the individual characters in the ATTC command. pText=DLApndE(HList, ET_TEXT2, 100); GetCStuff(pText); ...
919
Joachim de Ravenbel
jmbravo2
Mar 10, 2012 8:40 am
OMG you're a genius !!! It works fine, though I still don't know what I did wrong... I was aware of the /0 thing but handled it badly... Perhaps it was...
920
John
jicsaky
Mar 11, 2012 11:33 pm
I suspect both are leaking Multipoly, meaning you have some error in your construction. No reason to use Multipoly for the back ground, I would kill that and...
921
BC Holmes
bcholmes2001
Mar 11, 2012 11:55 pm
... w00t! Today, I finally reached the ah-ha moment of b-splines and Bezier curves! Here's the town of Greenheight, again: ...
922
BC Holmes
bcholmes2001
Mar 12, 2012 2:09 am
Oh, hey, this is strange. This email only just got delivered to me today, even though it's dated last Tuesday. ... Oh, I wouldn't put it past me! But,...