Thanks for posting this. I've been away so I have only been able to cast a glance on it so far, and done a test compile to make sure it compiles properly on my...
885
L. Lee Saunders
saul012000
Jul 15, 2011 6:18 pm
Glad to have you back Remy! If you like options, maybe you will like the series of blog entries I am just about to start on the FCW file format! Lee From:...
886
Remy Monsen
r_monsen
Jul 15, 2011 6:36 pm
Sounds interesting indeed. Looking forward to those....
887
Anna M. Dobritt
jdobritt
Jan 1, 2012 5:34 am
How are you? Let us get down to business. http://www.djmania.com.hr/pilspharmnew1029361.php?nugaolID=52 Sun, 1 Jan 2012 6:34:46 __________________ "To his...
888
bcholmes2001
Feb 20, 2012 3:06 am
Hi, I'm trying to understand the FCW file format, and I'm using the existing FCW to SVG source code (from the attachments area) as a base. Sadly, it's making...
889
Joseph Slayton
waldronate
Feb 20, 2012 4:14 am
Make sure that your compiler is honoring the #pragma pack() that defines the structure packing. Also make sure that it's not padding the structure to the next...
890
bcholmes2001
Feb 20, 2012 3:18 pm
... Thanks for the reply! I actually figured out my problem: the format appears to have changed. The file I was working with was an old version (the dbVer in...
891
bcholmes2001
Feb 20, 2012 9:15 pm
... I've looked into "reverse engineering" the format for the text labels, and figured out this much: 0x00 - 0x1B : standard block header 0x1C - 0x1D : ?? 0x1E...
892
Joseph Slayton
waldronate
Feb 20, 2012 10:22 pm
The FCW definition header file in the SVG converter is woefully incomplete. There is an XP development kit that has all of the definitions in it. The...
893
L. Lee Saunders
saul012000
Feb 20, 2012 10:35 pm
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...