// $Id: ai8_eps.cpp 1314 2006-06-14 08:58:56Z builder1 $ // ai8_eps.cpp: implementation of the AI8EPSFilter class. // ////////////////////////////////////////////////////////////////////// /* @@tag:xara-cn@@ DO NOT MODIFY THIS LINE ================================XARAHEADERSTART=========================== Xara LX, a vector drawing and manipulation program. Copyright (C) 1993-2006 Xara Group Ltd. Copyright on certain contributions may be held in joint with their respective authors. See AUTHORS file for details. LICENSE TO USE AND MODIFY SOFTWARE ---------------------------------- This file is part of Xara LX. Xara LX is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. Xara LX and its component source files are distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Xara LX (see the file GPL in the root directory of the distribution); if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ADDITIONAL RIGHTS ----------------- Conditional upon your continuing compliance with the GNU General Public License described above, Xara Group Ltd grants to you certain additional rights. The additional rights are to use, modify, and distribute the software together with the wxWidgets library, the wxXtra library, and the "CDraw" library and any other such library that any version of Xara LX relased by Xara Group Ltd requires in order to compile and execute, including the static linking of that library to XaraLX. In the case of the "CDraw" library, you may satisfy obligation under the GNU General Public License to provide source code by providing a binary copy of the library concerned and a copy of the license accompanying it. Nothing in this section restricts any of the rights you have under the GNU General Public License. SCOPE OF LICENSE ---------------- This license applies to this program (XaraLX) and its constituent source files only, and does not necessarily apply to other Xara products which may in part share the same code base, and are subject to their own licensing terms. This license does not apply to files in the wxXtra directory, which are built into a separate library, and are subject to the wxWindows license contained within that directory in the file "WXXTRA-LICENSE". This license does not apply to the binary libraries (if any) within the "libs" directory, which are subject to a separate license contained within that directory in the file "LIBS-LICENSE". ARRANGEMENTS FOR CONTRIBUTION OF MODIFICATIONS ---------------------------------------------- Subject to the terms of the GNU Public License (see above), you are free to do whatever you like with your modifications. However, you may (at your option) wish contribute them to Xara's source tree. You can find details of how to do this at: http://www.xaraxtreme.org/developers/ Prior to contributing your modifications, you will need to complete our contributor agreement. This can be found at: http://www.xaraxtreme.org/developers/contribute/ Please note that Xara will not accept modifications which modify any of the text between the start and end of this header (marked XARAHEADERSTART and XARAHEADEREND). MARKS ----- Xara, Xara LX, Xara X, Xara X/Xtreme, Xara Xtreme, the Xtreme and Xara designs are registered or unregistered trademarks, design-marks, and/or service marks of Xara Group Ltd. All rights in these marks are reserved. Xara Group Ltd, Gaddesden Place, Hemel Hempstead, HP2 6EX, UK. http://www.xara.com/ =================================XARAHEADEREND============================ */ #include "camtypes.h" #include "ai8_eps.h" #include "ai_layer.h" //#include "tim.h" //#include "filters.h" - in camtypes.h [AUTOMATICALLY REMOVED] //#include "oilfltrs.h" - in camtypes.h [AUTOMATICALLY REMOVED] DECLARE_SOURCE("$Revision"); #define new CAM_DEBUG_NEW CC_IMPLEMENT_DYNAMIC(AI8EPSFilter, AI5EPSFilter) ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// /******************************************************************************************** > AI8EPSFilter::~AI8EPSFilter() Author: Colin_Barfoot (Xara Group Ltd) Created: 28/03/00 Purpose: Default constructor, which sets the class details. ********************************************************************************************/ AI8EPSFilter::AI8EPSFilter() { // Set up filter descriptions. FilterNameID = _R(IDT_AI8EPS_FILTERNAME); FilterInfoID = _R(IDT_AI8EPS_FILTERINFO); ImportMsgID = _R(IDT_IMPORTMSG_AI8); FilterID = FILTERID_AI8EPS; // This filter only supports import Flags.CanImport = TRUE; Flags.CanExport = FALSE; } /******************************************************************************************** > AI8EPSFilter::~AI8EPSFilter() Author: Colin_Barfoot (Xara Group Ltd) Created: 28/03/00 Purpose: Default destructor. Cleans up all instantiated data for the class. ********************************************************************************************/ AI8EPSFilter::~AI8EPSFilter() { // Currently, nothing needs to be done. } /******************************************************************************************** > BOOL AI8EPSFilter::Init() Author: Colin_Barfoot (Xara Group Ltd) Created: 28/03/00 Purpose: Since the constructor can't fail, it does things that the constructor can't do. Returns: TRUE if the filter was initialised ok, FALSE otherwise. ********************************************************************************************/ BOOL AI8EPSFilter::Init() { // Get the OILFilter object pOILFilter = new AI8EPSOILFilter(this); if (pOILFilter == NULL) return FALSE; // Load the description strings FilterName.Load(FilterNameID); FilterInfo.Load(FilterInfoID); // All ok return TRUE; } ///////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////// I M P O R T //////////////////////////////////////////// // // Note: All import responsibility is delegated to the parent class // ///////////////////////////////////////////////////////////////////////////////////////////// /******************************************************************************************** > virtual INT32 AI8EPSFilter::EPSHeaderIsOk(ADDR pFileHeader, UINT32 HeaderSize) Author: Colin_Barfoot (Xara Group Ltd) Created: 28/03/00 Purpose: Checks to see if the EPS comment headers specify that this is an AI generated EPS file, as required. Returns: TRUE if the header is ok and import should proceed, FALSE if not. The header for AI8.0 begins.... %!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 8.0 %%AI8_CreatorVersion: 8 ********************************************************************************************/ INT32 AI8EPSFilter::EPSHeaderIsOk(ADDR pFileHeader, UINT32 HeaderSize) { UINT32 Lines = 0; TCHAR *Buffer = NULL; // !PS-Adobe line is ok - check creator line... CCMemTextFile HeaderFile ( reinterpret_cast ( pFileHeader ), HeaderSize ); if( HeaderFile.IsMemFileInited () == FALSE || HeaderFile.InitLexer () == FALSE ) { HeaderFile.close(); return 0; } // Graeme (28/6/00) - Adobe have changed their file format, and so the first line can // now be a %PDF directive. Therefore look for this directive in the first twenty // lines. while ( ( Lines < 100 ) && !HeaderFile.eof () ) { // Get the current line from the file. HeaderFile.GetLineToken(); Buffer = const_cast ( HeaderFile.GetTokenBuf () ); // Ensure that it's OK. ERROR2IF(Buffer == 0, 0, "Returned buffer from lex file == 0"); // Increment the line counter. Lines++; if (camStrncmp(Buffer, _T("%!PS-Adobe"), 10) == 0) { // Now find the %%Creator string. while ((Lines < 100) && !HeaderFile.eof()) { HeaderFile.GetLineToken(); Buffer = const_cast ( HeaderFile.GetTokenBuf() ); ERROR2IF(Buffer == 0, 0, "Returned buffer from lex file == 0"); Lines++; // Return TRUE if this file was created by Illustrator, or has been exported in // Illustrator format. if (camStrncmp(Buffer, _T("%%Creator: Adobe Illustrator(R) 8"), 33) == 0) { // We definitely want this. HeaderFile.close(); return 10; } // Check to see if it's from Illustrator 9. If you're writing a dedicated AI9 // filter, then you really should remove this code. else if (camStrncmp(Buffer, _T("%%Creator: Adobe Illustrator(R) 9"), 33) == 0) { // We probably want this. Note: I'm returning 9 because a native AI9 // filter would return 10, and if this code is left in, it will be // ignored. HeaderFile.close(); return 9; } if (camStrncmp(Buffer, _T("%%Creator:"), 10) == 0) { // Found the creator line - does it contain the word Illustrator? if (camStrstr( (const TCHAR*)Buffer, _T("Illustrator(R) 8")) != NULL) { HeaderFile.close(); return 10; } // Try to see if it's Illustrator 9. Again, remove this code when you're // writing a dedicated AI9 filter. else if (camStrstr( (const TCHAR*)Buffer, _T("Illustrator(R) 9")) != NULL) { HeaderFile.close(); return 9; } // Not an AI file. else { break; } } // If we find the compression token then stop the search as we don't want to // start looking in the compressed data! if (camStrncmp(Buffer, _T("%%Compression:"), 14)==0) break; } // Remember to close the file before returning. HeaderFile.close(); // Didn't find a suitable Creator line, but the EPS line was ok, so return // that we're interested, but not sure. return 5; } // If we find the compression token then stop the search as we don't want to start // looking in the compressed data! if (camStrncmp(Buffer, _T("%%Compression:"), 14)==0) break; } // Remember to close the file before returning. HeaderFile.close(); // This file type isn't suitable. return 0; } /******************************************************************************************** > void AI8EPSFilter::LookUpToken() Author: Colin_Barfoot (Xara Group Ltd) Created: 28/03/00 Purpose: Compare the current token against the AI keywords to see if it is one of them. Currently 8.0 checks only for its version of the layer operator which differs from previous versions. ********************************************************************************************/ void AI8EPSFilter::LookUpToken() { // Currently I do not have documentation for the AI 8 tokens, and so am passing the // token directly to the base class. AI5EPSFilter::LookUpToken(); } /******************************************************************************************** > BOOL AI5EPSFilter::ProcessToken() Author: Colin_Barfoot (Xara Group Ltd) Created: 28/03/00 Purpose: Checks if we're looking at the version 8.0 layer token otherwise delegates to the base class. ********************************************************************************************/ BOOL AI8EPSFilter::ProcessToken() { // Graeme (8/5/00) - The only AI8 token that we're handling at the moment is Lb, // which is a modified version of the AI5 Lb token. As such, all responsibility // for token processing is being passed to the base class. return AI5EPSFilter::ProcessToken(); } /******************************************************************************************** > BOOL AI8EPSFilter::DecodeLayer ( void ) Author: Graeme_Sutherland (Xara Group Ltd) Created: 8/5/00 Inputs: - Returns: TRUE - The command was processed. FALSE - It wasn't used by this filter. Purpose: Inserts a layer into the tree. ********************************************************************************************/ BOOL AI8EPSFilter::DecodeLayer ( void ) { // If there's still an active layer, the LB token has been missed out, so throw an EPS // error message. if ( mpLayerProc != NULL ) { return FALSE; } // Create the new layer processor. mpLayerProc = new AILayerProcessor; ERROR2IF( mpLayerProc == NULL, FALSE, "Insufficient memory to create layer processor."); // Insert the layer into the tree. return mpLayerProc->DecodeAI8Lb ( *this ); }