- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经在我的第一个真正的 HTML5 Canvas 项目上工作了一段时间了,但我似乎无法让事情按照我的意愿排列。我最近遇到了 context.clip() 函数,它似乎有帮助,但有其他意想不到的后果,所以我想我应该把我的问题放在那里。
我的项目是一张六 Angular 形瓷砖 map ,其边界代表大陆和旅行路线。这是我的 map 的一张好照片:
我注意到,如果我在绘制每个六 Angular 形之前使用clip()函数,内部浅绿色六 Angular 形看起来不会那么偏离中心。这是一个特写比较:
问题是,当我使用这个clip()函数时,我似乎丢失了边框/路线覆盖。我的代码绘制了所有的六 Angular 形,然后绘制了粗边框,这样它们就不会被绘制在上面。
我不确定我是否理解这里发生的事情。为什么 Clip() 会破坏我的边框?我的整个代码列表都在这个 github 存储库中:https://github.com/boknows/hex-map-game ,但我将在这里列出两个主要功能。 drawHexGrid() 进行数学运算以放置每个单独的十六进制,drawHex() 绘制具有适当填充的十六进制,drawHexBorders() 绘制之后的边框/路线。
HexagonGrid.prototype.drawHexGrid = function (rows, cols, originX, originY, isDebug) {
this.canvasOriginX = originX;
this.canvasOriginY = originY;
this.rows = rows;
this.cols = cols;
var currentHexX;
var currentHexY;
var debugText = "";
var offsetColumn = false;
var hexNum = 1;
for (var col = 0; col < cols; col++) {
for (var row = 0; row < rows; row++) {
if (!offsetColumn) {
currentHexX = (col * this.side) + originX;
currentHexY = (row * this.height) + originY;
} else {
currentHexX = col * this.side + originX;
currentHexY = (row * this.height) + originY + (this.height * 0.5);
}
if (isDebug) {
debugText = hexNum;
hexNum++;
}
if(map.data[row][col].type=="land"){
this.drawHex(currentHexX, currentHexY, "#99CC66", debugText, false, map.data[row][col].owner);
}else if(map.data[row][col].type=="water"){
this.drawHex(currentHexX, currentHexY, "#3333FF", "", false, map.data[row][col].owner);
}else if(map.data[row][col].type=="forest"){
this.drawHex(currentHexX, currentHexY, "#009900", debugText, false, map.data[row][col].owner);
}else if(map.data[row][col].type=="desert"){
this.drawHex(currentHexX, currentHexY, "#F5E8C1", debugText, false, map.data[row][col].owner);
}else if(map.data[row][col].type=="mountains"){
this.drawHex(currentHexX, currentHexY, "#996600", debugText, false, map.data[row][col].owner);
}
}
offsetColumn = !offsetColumn;
}
var offsetColumn = false;
for (var col = 0; col < cols; col++) { //Draw borders separately so they don't get overlapped by other graphics.
for (var row = 0; row < rows; row++) {
if (!offsetColumn) {
currentHexX = (col * this.side) + originX;
currentHexY = (row * this.height) + originY;
} else {
currentHexX = col * this.side + originX;
currentHexY = (row * this.height) + originY + (this.height * 0.5);
}
this.drawHexBorders(currentHexX, currentHexY);
}
offsetColumn = !offsetColumn;
}
};
HexagonGrid.prototype.drawHex = function (x0, y0, fillColor, debugText, highlight, highlightColor, owner) {
this.context.font="bold 12px Helvetica";
this.owner = owner;
this.context.strokeStyle = "#000000";
this.context.lineWidth = 1;
this.context.lineCap='round';
this.context.restore();
var tile = this.getSelectedTile(x0 + this.width - this.side, y0);
var numberOfSides = 6,
size = this.radius,
Xcenter = x0 + (this.width / 2),
Ycenter = y0 + (this.height / 2);
this.context.beginPath();
this.context.lineWidth = 1;
this.context.moveTo (Xcenter + size * Math.cos(0), Ycenter + size * Math.sin(0));
for (var i = 1; i <= numberOfSides;i += 1) {
this.context.lineTo (Xcenter + size * Math.cos(i * 2 * Math.PI / numberOfSides), Ycenter + size * Math.sin(i * 2 * Math.PI / numberOfSides));
}
if(typeof(map.data[tile.row][tile.column]) != "undefined"){
if (fillColor && highlight == false && map.data[tile.row][tile.column].type =="land") {
this.context.fillStyle = map.data[tile.row][tile.column].color;
}else{
this.context.fillStyle = fillColor;
}
}
if (highlight == true){
this.context.fillStyle = highlightColor;
}
this.context.fill();
this.context.closePath();
this.context.save();
this.context.clip();
this.context.lineWidth *= 2;
this.context.stroke();
if(map.data[tile.row][tile.column].type != "water"){
//Draw smaller hex inside bigger hex - v2
var numberOfSides = 6,
size = this.radius*0.7,
Xcenter = x0 + (this.width / 2),
Ycenter = y0 + (this.height / 2);
this.context.fillStyle = fillColor;
this.context.strokeStyle = map.data[tile.row][tile.column].color;
this.context.beginPath();
this.context.lineWidth = .5;
this.context.moveTo (Xcenter + size * Math.cos(0), Ycenter + size * Math.sin(0));
for (var i = 1; i <= numberOfSides;i += 1) {
this.context.lineTo (Xcenter + size * Math.cos(i * 2 * Math.PI / numberOfSides), Ycenter + size * Math.sin(i * 2 * Math.PI / numberOfSides));
}
this.context.fill();
this.context.closePath();
this.context.stroke();
//if defensive boost active, draw grey dotted hex inside of owners colored hex.
var index = 0;
for(var i=0;i<map.dataProp.users.length;i++){
if(map.dataProp.users[i]==map.data[tile.row][tile.column].owner){
index = i;
}
}
var defTrigger = false;
for(var i=0;i<map.dataProp.turnModifiers[index].length;i++){
if(map.dataProp.turnModifiers[index][i].type=="defensiveBoost"){
defTrigger = true;
}
}
if(defTrigger == true){
var numberOfSides = 6,
size = this.radius-12,
Xcenter = x0 + (this.width / 2),
Ycenter = y0 + (this.height / 2);
this.context.strokeStyle = "#929292"
this.context.beginPath();
this.context.lineWidth = 5;
this.context.moveTo (Xcenter + size * Math.cos(0), Ycenter + size * Math.sin(0));
for (var i = 1; i <= numberOfSides;i += 1) {
this.context.lineTo (Xcenter + size * Math.cos(i * 2 * Math.PI / numberOfSides), Ycenter + size * Math.sin(i * 2 * Math.PI / numberOfSides));
}
this.context.fill();
this.context.closePath();
this.context.stroke();
}
//Print number of units
this.context.textAlign="center";
this.context.textBaseline = "middle";
this.context.font = 'bold 13pt Arial';
//Code for contrasting text with background color
/*var clr = getContrastYIQ(map.data[tile.row][tile.column].color); //contrast against player color
var clr = getContrastYIQ(fillColor); //contrast against land color (fillColor)
this.context.fillStyle = clr;
*/
this.context.fillStyle = "#000000";
this.context.fillText(map.data[tile.row][tile.column].units, x0 + (this.width / 2) , y0 + (this.height / 2));
this.context.fillStyle = "";
}
};
HexagonGrid.prototype.drawHexBorders = function (x0, y0) {
var tile = this.getSelectedTile(x0 + this.width - this.side, y0);
if(map.data[tile.row][tile.column].s != ""){
this.context.beginPath();
this.context.lineWidth = 5;
this.context.strokeStyle=map.data[tile.row][tile.column].s;
this.context.moveTo(x0 + this.side, y0 + this.height);
this.context.lineTo(x0 + this.width - this.side, y0 + this.height);
this.context.stroke();
}
if(map.data[tile.row][tile.column].n != ""){
this.context.beginPath();
this.context.lineWidth = 5;
this.context.strokeStyle=map.data[tile.row][tile.column].n;
this.context.moveTo(x0 + this.side, y0);
this.context.lineTo(x0 + this.width - this.side, y0);
this.context.stroke();
}
if(map.data[tile.row][tile.column].ne != ""){
this.context.beginPath();
this.context.lineWidth = 5;
this.context.strokeStyle=map.data[tile.row][tile.column].ne;
this.context.moveTo(x0 + this.side, y0);
this.context.lineTo(x0 + this.width, y0 + (this.height / 2));
this.context.stroke();
}
if(map.data[tile.row][tile.column].se != ""){
this.context.beginPath();
this.context.lineWidth = 5;
this.context.strokeStyle=map.data[tile.row][tile.column].se;
this.context.moveTo(x0 + this.width, y0 + (this.height / 2));
this.context.lineTo(x0 + this.side, y0 + this.height);
this.context.stroke();
}
if(map.data[tile.row][tile.column].sw != ""){
this.context.beginPath();
this.context.lineWidth = 5;
this.context.strokeStyle=map.data[tile.row][tile.column].sw;
this.context.moveTo(x0 + this.width - this.side, y0 + this.height);
this.context.lineTo(x0, y0 + (this.height/2));
this.context.stroke();
}
if(map.data[tile.row][tile.column].nw != ""){
this.context.beginPath();
this.context.lineWidth = 5;
this.context.strokeStyle=map.data[tile.row][tile.column].nw;
this.context.moveTo(x0, y0 + (this.height/2));
this.context.lineTo(x0 + this.width - this.side, y0);
this.context.stroke();
}
};
//Recusivly step up to the body to calculate canvas offset.
HexagonGrid.prototype.getRelativeCanvasOffset = function() {
var x = 0, y = 0;
var layoutElement = this.canvas;
var bound = layoutElement.getBoundingClientRect();
if (layoutElement.offsetParent) {
do {
x += layoutElement.offsetLeft;
y += layoutElement.offsetTop;
} while (layoutElement = layoutElement.offsetParent);
return { x: bound.left, y: bound.top };
}
}
最佳答案
免责声明:我没有看过你的代码——你发布了很多代码! (Stackoverflow 鼓励您发布一个简化的代码片段来说明您的问题)。
但是您的问题可能是由于笔画的完成方式造成的吗?
笔画是在其定义的路径的一半内部和一半外部完成的。因此,如果您描画一个矩形,然后清除同一个矩形,您仍然会看到描边的一部分——您会看到描边的半外部部分。
// draw a stroked rect
context.strokeRect(10,10,30,30);
// clear the same rect
context.clearRect(10,10,30,30);
// the outside half of the stroke is still visible
相反,剪切将防止绘制笔划的半外部部分。也许您丢失的六 Angular 形边框是未绘制的半外侧笔画。
关于javascript - 了解 canvas Clip() 如何影响多个动态创建的形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27152052/
这是一个非常笼统的问题,我希望我能答对。 我正在研究 SSL/TLS 重新协商并已阅读了一些内容。这是我从阅读中了解到的内容: 从 SSL/TLS 重新协商的角度来看,客户端分为两个主要组,打补丁的和
第一个屏幕是艺术的细节。当我向上滚动时,标题将是 alpha。我点击另一个“艺术”到另一个细节 UI,然后按回到 Previous UI。之前的UI标题是黑色的,怎么变透明了。 布局:
想知道 mv 对基表的影响。它会减慢基表的速度吗?它什么时候开始写入 mv,就像同时写入基表和 mv 一样? 如果我有 local_quorum 的 CL 且 RF=3,客户端是否必须等到写入 mv
似乎在任何地方都找不到太多关于此问题的帮助,所以我想我会在这里尝试。 我正在尝试制作一个简单的 for 循环,当我将鼠标悬停在 html 卡上时,它会隐藏卡中的一些文本。该卡有一个简单的名字和姓氏,我
我有一个程序每帧运行 tick() 方法。我希望一个对象根据设定的重力常数下落,因此我创建了一个 Ball 对象,该对象会将其位置更新为前一帧的位置减去 y 速度。每个刻度 y 速度都会减少重力常数。
我的 KeyHandler 在这里: private void KeyHandler(java.awt.event.KeyEvent evt) {
我有一个方法,其中使用了很多其他类,包括链接列表、队列和堆栈。在我的方法中,我有一个 for 循环,我想在其中弹出堆栈(方便地命名为 s)并将队列(方便地命名为 q)出队到 s1 和 q1。由于某种原
我有一个 JTree 节点数组和另一个自定义对象的相应数组。 我想要什么:当选择 JTree 的节点时,相应对象(其数组中索引与节点数组中所选节点索引相同的对象)的字段填充 JLabels。 我被困在
我知道浏览器完成了处理客户端脚本(Javascript、JQuery 等)的所有工作,但想知道在性能方面是否还有其他重要因素(网络速度、客户端计算机速度、服务器环境) 如果它完全依赖于浏览器(类型和版
我有一个 Android 服务在后台运行,它将使用以下代码: while(true) { ServerSocket server = new ServerSocket(1234); Socke
对JQM有以下疑惑: 1.如果我们在单独的 html 文件中使用重复的 id,对 jquery mobile 有什么影响。 假设我们在单独的 html 文件中有重复的 id,但如果我们不使用该 id
我正在尝试更新两个(inventory、sold)MySQL 表的表库存。 假设我们正在处理的 sku 是 BT888-16 UPDATE inventory JOIN sold ON invento
我使用这种方法来更改我的表格单元格值, 它在 jtable 上改变但在文本文件上没有改变! public class user_AllBooks extends AbstractTableModel
我想在向表中插入数据时创建一个 MYSQL 存储过程,数据也会被插入到其他服务器表中。 我知道这在 ORACLE 数据库中是可能的,但我不知道它是否适用于 MYSQL。 有什么办法吗? 最佳答案 是的
我在 css 方面非常糟糕,只能靠 SO 答案来解决 - 但是我找不到针对这个特定问题的任何解释。 我有一个表单,其中包含一个 textarea 和一个 button(input/submit),仅此
我在一个元素上有动画,但它的移动也会影响 sibling 。如何在不影响兄弟元素的情况下仅在元素上使用动画? 问题示例: function animateSearch() { $('.glyph
我试图在我的 ViewController 中的 UIView 的所有四个边上建立一个阴影 — 在我通过 Xcode 向 UIView 添加约束之前,它工作得很好。我怎样才能使 UIView 的阴影显
自从我使用 JavaScript 以来已经有一段时间了 - 在获得证书之后我开始学习 Perl 并从那时起就一直使用它。我只是想重新开始使用 JS,我已经写了这个,我想说的是,这是一个简单的小脚本,可
我正在处理一个 HTML 元素,我添加了一个复选框,选中后会高亮显示所有文本输入字段。唯一的问题是一些输入字段在表格内,出于某种原因我无法用我的代码影响它们。任何帮助将不胜感激。 相关代码: HTML
我为 String 类创建了一个小扩展,以便方便地从中删除字符。这是它的样子: mutating func drop(characters chars: [String]) { for c i
我是一名优秀的程序员,十分优秀!