Alphabetical Class Index  Class Hierarchy   File Members   Compound Members   File List  

GroupRepository3DF.h
00001 // Copyright (c) 1998-2014 by Tech Soft 3D, Inc.
00002 //
00003 // The information contained herein is confidential and proprietary to Tech Soft 3D, Inc.,
00004 // and considered a trade secret as defined under civil and criminal statutes.
00005 // Tech Soft 3D, Inc. shall pursue its civil and criminal remedies in the event of
00006 // unauthorized use or misappropriation of its trade secrets.  Use of this information
00007 // by anyone other than authorized employees of Tech Soft 3D, Inc. is granted only under
00008 // a written non-disclosure agreement, expressly prescribing the scope and manner of such use.
00009 
00010 #pragma once
00011 
00012 #include "GroupRepository.h"
00013 
00014 #include <hc.h>
00015 
00016 #include "SegmentKey3DF.h"
00017 
00018 class GroupRepository3DF : public GroupRepository
00019 {
00020 public:
00021     GroupRepository3DF(SegmentKey const & includeSegmentKey, GeometryImporter& geometryImporter,
00022                     VisibilityChecker& visibilityChecker, ImageRepository& imageRepository,
00023                     StyleRepository& textureRepository);
00024 
00025 private:
00026     GroupRepository3DF(const GroupRepository3DF&);
00027     GroupRepository3DF& operator=(const GroupRepository3DF&);
00028 
00029     virtual void    ApplyGroupColors(SegmentKey & segment, SUColor const & color);
00030     virtual void    ApplyGroupTextures(SegmentKey & segment, int32_t const groupTextureId, std::string const & imageName);
00031 
00032     virtual bool    InsertInstance(SegmentKey & segment, SegmentKey & includeSegment, std::vector<float> const & floatTransform, bool const isVisible);
00033 };