/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the Collabora Office project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include <sal/config.h>

#include <basegfx/point/b2dpoint.hxx>
#include <basegfx/polygon/b2dpolygontools.hxx>
#include <basegfx/range/b2drectangle.hxx>
#include <cppuhelper/supportsservice.hxx>

#include <parametricpolypolygon.hxx>
#include <utility>

using namespace ::com::sun::star;

namespace canvas
{
    rtl::Reference<ParametricPolyPolygon> ParametricPolyPolygon::create(
        const uno::Reference< vclcanvas::XGraphicDevice >& rDevice,
        std::u16string_view rServiceName,
        const ::cpo::uno::Sequence< ::cpo::uno::Sequence< double > >& colorSequence,
        const ::cpo::uno::Sequence< double >& colorStops,
        double fAspectRatio )
    {
        if ( rServiceName == u"LinearGradient" )
        {
            return createLinearHorizontalGradient(rDevice, colorSequence, colorStops);
        }
        else if ( rServiceName == u"EllipticalGradient" )
        {
            return createEllipticalGradient(rDevice, colorSequence, colorStops, fAspectRatio);
        }
        else if ( rServiceName == u"RectangularGradient" )
        {
            return createRectangularGradient(rDevice, colorSequence, colorStops, fAspectRatio);
        }
        else
            assert(false && "unsupported service");

        return nullptr;
    }

    rtl::Reference<ParametricPolyPolygon> ParametricPolyPolygon::createLinearHorizontalGradient(
        const uno::Reference< vclcanvas::XGraphicDevice >&  rDevice,
        const cpo::uno::Sequence< cpo::uno::Sequence< double > >&     colors,
        const cpo::uno::Sequence< double >&                      stops )
    {
        // TODO(P2): hold gradient brush statically, and only setup
        // the colors
        return new ParametricPolyPolygon( rDevice, GradientType::Linear, colors, stops );
    }

    rtl::Reference<ParametricPolyPolygon> ParametricPolyPolygon::createEllipticalGradient(
        const uno::Reference< vclcanvas::XGraphicDevice >&  rDevice,
        const cpo::uno::Sequence< cpo::uno::Sequence< double > >&     colors,
        const cpo::uno::Sequence< double >&                      stops,
        double                                              fAspectRatio )
    {
        // TODO(P2): hold gradient polygon statically, and only setup
        // the colors
        return new ParametricPolyPolygon(
            rDevice,
            ::basegfx::utils::createPolygonFromCircle(
                ::basegfx::B2DPoint(0,0), 1 ),
            GradientType::Elliptical,
            colors, stops, fAspectRatio );
    }

    rtl::Reference<ParametricPolyPolygon> ParametricPolyPolygon::createRectangularGradient( const uno::Reference< vclcanvas::XGraphicDevice >& rDevice,
                                                                             const cpo::uno::Sequence< cpo::uno::Sequence< double > >&    colors,
                                                                             const cpo::uno::Sequence< double >&                     stops,
                                                                             double                                             fAspectRatio )
    {
        // TODO(P2): hold gradient polygon statically, and only setup
        // the colors
        return new ParametricPolyPolygon(
            rDevice,
            ::basegfx::utils::createPolygonFromRect(
                ::basegfx::B2DRectangle( -1, -1, 1, 1 ) ),
            GradientType::Rectangular,
            colors, stops, fAspectRatio );
    }

    void ParametricPolyPolygon::disposing(std::unique_lock<std::mutex>&)
    {
        mxDevice.clear();
    }

    OUString ParametricPolyPolygon::getImplementationName(  )
    {
        return u"Canvas::ParametricPolyPolygon"_ustr;
    }

    bool ParametricPolyPolygon::supportsService( const OUString& ServiceName )
    {
        return cppu::supportsService(this, ServiceName);
    }

    cpo::uno::Sequence< OUString > ParametricPolyPolygon::getSupportedServiceNames(  )
    {
        return { u"com.sun.star.rendering.ParametricPolyPolygon"_ustr };
    }

    ParametricPolyPolygon::~ParametricPolyPolygon()
    {
    }

    ParametricPolyPolygon::ParametricPolyPolygon( uno::Reference< vclcanvas::XGraphicDevice >           xDevice,
                                                  const ::basegfx::B2DPolygon&                          rGradientPoly,
                                                  GradientType                                          eType,
                                                  const cpo::uno::Sequence< cpo::uno::Sequence< double > >&       rColors,
                                                  const cpo::uno::Sequence< double >&                        rStops,
                                                  double                                                nAspectRatio ) :
        mxDevice(std::move( xDevice )),
        maValues( rGradientPoly,
                  rColors,
                  rStops,
                  nAspectRatio,
                  eType )
    {
    }

    ParametricPolyPolygon::ParametricPolyPolygon( uno::Reference< vclcanvas::XGraphicDevice >           xDevice,
                                                  GradientType                                          eType,
                                                  const cpo::uno::Sequence< cpo::uno::Sequence< double > >&       rColors,
                                                  const cpo::uno::Sequence< double >&                        rStops ) :
        mxDevice(std::move( xDevice )),
        maValues( ::basegfx::B2DPolygon(),
                  rColors,
                  rStops,
                  1.0,
                  eType )
    {
    }

    const ParametricPolyPolygon::Values & ParametricPolyPolygon::getValues() const
    {
        return maValues;
    }

}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
