You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
4.1 KiB
101 lines
4.1 KiB
/****************************************************************************
|
|
Copyright (c) 2018-2023 Xiamen Yaji Software Co., Ltd.
|
|
|
|
http://www.cocos.com
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights to
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "platform/interfaces/modules/canvas/ICanvasRenderingContext2D.h"
|
|
|
|
#include "base/csscolorparser.h"
|
|
#include "bindings/jswrapper/config.h"
|
|
#include "math/Math.h"
|
|
|
|
#include "cocos/bindings/jswrapper/SeApi.h"
|
|
#include "platform/java/jni/JniHelper.h"
|
|
#include "platform/java/jni/JniImp.h"
|
|
|
|
#if __OHOS__
|
|
#include <hilog/log.h>
|
|
#endif
|
|
|
|
#include <regex>
|
|
|
|
#ifndef JCLS_CANVASIMPL
|
|
#define JCLS_CANVASIMPL "com/cocos/lib/CanvasRenderingContext2DImpl"
|
|
#endif
|
|
#include "base/std/container/array.h"
|
|
|
|
namespace cc {
|
|
|
|
class CanvasRenderingContext2DDelegate : public ICanvasRenderingContext2D::Delegate {
|
|
public:
|
|
using Size = ccstd::array<float, 2>;
|
|
using TextAlign = ICanvasRenderingContext2D::TextAlign;
|
|
using TextBaseline = ICanvasRenderingContext2D::TextBaseline;
|
|
|
|
CanvasRenderingContext2DDelegate();
|
|
~CanvasRenderingContext2DDelegate() override;
|
|
|
|
void recreateBuffer(float w, float h) override;
|
|
void beginPath() override;
|
|
void closePath() override;
|
|
void moveTo(float x, float y) override;
|
|
void lineTo(float x, float y) override;
|
|
void stroke() override;
|
|
void saveContext() override;
|
|
void restoreContext() override;
|
|
void clearRect(float /*x*/, float /*y*/, float w, float h) override;
|
|
void fill() override;
|
|
void setLineCap(const ccstd::string &lineCap) override;
|
|
void setLineJoin(const ccstd::string &lineJoin) override;
|
|
void rect(float x, float y, float w, float h) override;
|
|
void fillRect(float x, float y, float w, float h) override;
|
|
void fillText(const ccstd::string &text, float x, float y, float /*maxWidth*/) override;
|
|
void strokeText(const ccstd::string &text, float /*x*/, float /*y*/, float /*maxWidth*/) override;
|
|
Size measureText(const ccstd::string &text) override;
|
|
void updateFont(const ccstd::string &fontName, float fontSize, bool bold, bool italic, bool oblique, bool smallCaps) override;
|
|
void setTextAlign(TextAlign align) override;
|
|
void setTextBaseline(TextBaseline baseline) override;
|
|
void setFillStyle(uint8_t r, uint8_t g, uint8_t b, uint8_t a) override;
|
|
void setStrokeStyle(uint8_t r, uint8_t g, uint8_t b, uint8_t a) override;
|
|
void setLineWidth(float lineWidth) override;
|
|
const cc::Data &getDataRef() const override;
|
|
void fillImageData(const Data &imageData, float imageWidth, float imageHeight, float offsetX, float offsetY) override;
|
|
void updateData() override;
|
|
void setShadowBlur(float blur) override;
|
|
void setShadowColor(uint8_t r, uint8_t g, uint8_t b, uint8_t a) override;
|
|
void setShadowOffsetX(float offsetX) override;
|
|
void setShadowOffsetY(float offsetY) override;
|
|
|
|
private:
|
|
void unMultiplyAlpha(unsigned char *ptr, uint32_t size);
|
|
|
|
public:
|
|
private:
|
|
jobject _obj = nullptr;
|
|
Data _data;
|
|
float _bufferWidth = 0.0F;
|
|
float _bufferHeight = 0.0F;
|
|
};
|
|
|
|
} // namespace cc
|
|
|