1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-09-19 13:50:06 +00:00
pdf2htmlEX/src/HTMLRenderer/state.cc

399 lines
11 KiB
C++
Raw Normal View History

2012-08-14 06:35:55 +00:00
/*
* state.cc
*
* track the current state
*
* by WangLu
* 2012.08.14
*/
#include <algorithm>
2012-08-14 06:35:55 +00:00
#include "HTMLRenderer.h"
2012-08-14 09:13:29 +00:00
#include "namespace.h"
2012-08-14 06:35:55 +00:00
using std::max;
void HTMLRenderer::updateAll(GfxState * state)
{
all_changed = true;
updateTextPos(state);
}
void HTMLRenderer::updateRise(GfxState * state)
{
rise_changed = true;
}
void HTMLRenderer::updateTextPos(GfxState * state)
{
text_pos_changed = true;
cur_tx = state->getLineX();
cur_ty = state->getLineY();
}
void HTMLRenderer::updateTextShift(GfxState * state, double shift)
{
text_pos_changed = true;
cur_tx -= shift * 0.001 * state->getFontSize() * state->getHorizScaling();
}
void HTMLRenderer::updateFont(GfxState * state)
{
font_changed = true;
}
void HTMLRenderer::updateCTM(GfxState * state, double m11, double m12, double m21, double m22, double m31, double m32)
{
ctm_changed = true;
}
void HTMLRenderer::updateTextMat(GfxState * state)
{
text_mat_changed = true;
}
void HTMLRenderer::updateHorizScaling(GfxState * state)
{
hori_scale_changed = true;
}
void HTMLRenderer::updateCharSpace(GfxState * state)
{
letter_space_changed = true;
}
void HTMLRenderer::updateWordSpace(GfxState * state)
{
word_space_changed = true;
}
void HTMLRenderer::updateFillColor(GfxState * state)
{
color_changed = true;
}
2012-08-14 06:35:55 +00:00
void HTMLRenderer::check_state_change(GfxState * state)
{
//TODO:
// close <span> but not <div>, to use the first style of the line
// DEPENDENCY WARNING
// don't adjust the order of state checking
new_line_status = LineStatus::NONE;
2012-08-14 06:35:55 +00:00
bool need_recheck_position = false;
bool need_rescale_font = false;
// rise
if(all_changed || rise_changed)
2012-08-14 06:35:55 +00:00
{
double new_rise = state->getRise();
if(!_equal(cur_rise, new_rise))
2012-08-14 06:35:55 +00:00
{
need_recheck_position = true;
cur_rise = new_rise;
2012-08-14 06:35:55 +00:00
}
}
// text position
// we've been tracking the text position positively in the update*** functions
if(all_changed || text_pos_changed)
2012-08-14 06:35:55 +00:00
{
2012-08-15 13:51:39 +00:00
need_recheck_position = true;
}
// font name & size
2012-08-14 06:35:55 +00:00
if(all_changed || font_changed)
{
long long new_fn_id = install_font(state->getFont());
if(!(new_fn_id == cur_fn_id))
{
new_line_status = max(new_line_status, LineStatus::DIV);
2012-08-14 06:35:55 +00:00
cur_fn_id = new_fn_id;
}
double new_font_size = state->getFontSize();
if(!_equal(cur_font_size, new_font_size))
2012-08-14 06:35:55 +00:00
{
need_rescale_font = true;
cur_font_size = new_font_size;
2012-08-14 06:35:55 +00:00
}
}
2012-08-19 10:02:18 +00:00
// backup the current ctm for need_recheck_position
2012-08-19 11:05:14 +00:00
double old_ctm[6];
memcpy(old_ctm, cur_ctm, sizeof(old_ctm));
2012-08-19 10:02:18 +00:00
// ctm & text ctm & hori scale
if(all_changed || ctm_changed || text_mat_changed || hori_scale_changed)
2012-08-14 06:35:55 +00:00
{
double new_ctm[6];
const double * m1 = state->getCTM();
const double * m2 = state->getTextMat();
double hori_scale = state->getHorizScaling();
new_ctm[0] = (m1[0] * m2[0] + m1[2] * m2[1]) * hori_scale;
new_ctm[1] = (m1[1] * m2[0] + m1[3] * m2[1]) * hori_scale;
2012-08-14 06:35:55 +00:00
new_ctm[2] = m1[0] * m2[2] + m1[2] * m2[3];
new_ctm[3] = m1[1] * m2[2] + m1[3] * m2[3];
2012-08-16 06:00:30 +00:00
new_ctm[4] = m1[0] * m2[4] + m1[2] * m2[5] + m1[4];
new_ctm[5] = m1[1] * m2[4] + m1[3] * m2[5] + m1[5];
//new_ctm[4] = new_ctm[5] = 0;
2012-08-14 06:35:55 +00:00
if(!_tm_equal(new_ctm, cur_ctm))
{
2012-08-19 10:02:18 +00:00
need_recheck_position = true;
2012-08-14 06:35:55 +00:00
need_rescale_font = true;
memcpy(cur_ctm, new_ctm, sizeof(cur_ctm));
}
}
// draw_ctm, draw_scale
// depends: font size & ctm & text_ctm & hori scale
2012-08-14 06:35:55 +00:00
if(need_rescale_font)
{
double new_draw_ctm[6];
memcpy(new_draw_ctm, cur_ctm, sizeof(new_draw_ctm));
draw_scale = 10*sqrt(new_draw_ctm[2] * new_draw_ctm[2] + new_draw_ctm[3] * new_draw_ctm[3]);
2012-08-14 06:35:55 +00:00
double new_draw_font_size = cur_font_size;
if(_is_positive(draw_scale))
{
new_draw_font_size *= draw_scale;
for(int i = 0; i < 4; ++i)
new_draw_ctm[i] /= draw_scale;
}
else
{
draw_scale = 1.0;
}
if(!(_equal(new_draw_font_size, draw_font_size)))
{
new_line_status = max(new_line_status, LineStatus::DIV);
2012-08-14 06:35:55 +00:00
draw_font_size = new_draw_font_size;
cur_fs_id = install_font_size(draw_font_size);
}
2012-08-19 11:05:14 +00:00
if(!(_tm_equal(new_draw_ctm, draw_ctm, 4)))
2012-08-14 06:35:55 +00:00
{
new_line_status = max(new_line_status, LineStatus::DIV);
2012-08-14 06:35:55 +00:00
memcpy(draw_ctm, new_draw_ctm, sizeof(draw_ctm));
cur_tm_id = install_transform_matrix(draw_ctm);
}
}
2012-08-19 10:02:18 +00:00
// see if we can merge with the current line
// depends: rise & text position & transformation
if(need_recheck_position)
{
2012-08-19 20:30:05 +00:00
// try to transform the old origin under the new TM
/*
* OldTM * (draw_tx, draw_ty, 1)^T = CurTM * (draw_tx + dx, draw_ty + dy, 1)^T
*
* OldTM[4] = CurTM[0] * dx + CurTM[2] * dy + CurTM[4]
* OldTM[5] = CurTM[1] * dx + CurTM[3] * dy + CurTM[5]
*
* We just care if we can map the origin y to the same new y
* So just let dy = cur_y - old_y, and try to solve dx
*
* TODO, writing mode, set dx and solve dy
*/
double dy = cur_ty + cur_rise - draw_ty;
draw_ty += dy;
double tdx = old_ctm[4] - cur_ctm[4] - cur_ctm[2] * dy;
double tdy = old_ctm[5] - cur_ctm[5] - cur_ctm[3] * dy;
if(_equal(cur_ctm[0] * tdy, cur_ctm[1] * tdx))
2012-08-19 10:02:18 +00:00
{
2012-08-19 20:30:05 +00:00
if(abs(cur_ctm[0]) > EPS)
draw_tx += tdx / cur_ctm[0];
else if (abs(cur_ctm[1]) > EPS)
draw_tx += tdy / cur_ctm[1];
2012-08-19 10:02:18 +00:00
else
{
2012-08-19 20:30:05 +00:00
if((abs(tdx) < EPS) && (abs(tdy) < EPS))
2012-08-19 10:02:18 +00:00
{
2012-08-19 20:30:05 +00:00
// free
draw_tx = cur_tx;
}
2012-08-19 10:02:18 +00:00
else
{
2012-08-19 20:30:05 +00:00
// fail
new_line_status = max(new_line_status, LineStatus::DIV);
2012-08-19 10:02:18 +00:00
}
}
}
else
{
2012-08-19 20:30:05 +00:00
// no solution
2012-08-19 10:02:18 +00:00
new_line_status = max(new_line_status, LineStatus::DIV);
}
}
// letter space
// depends: draw_scale
if(all_changed || letter_space_changed)
{
double new_letter_space = state->getCharSpace();
if(!_equal(cur_letter_space, new_letter_space))
{
new_line_status = max(new_line_status, LineStatus::SPAN);
cur_letter_space = new_letter_space;
cur_ls_id = install_letter_space(cur_letter_space * draw_scale);
}
}
// word space
// depends draw_scale
if(all_changed || word_space_changed)
{
double new_word_space = state->getWordSpace();
if(!_equal(cur_word_space, new_word_space))
{
new_line_status = max(new_line_status, LineStatus::SPAN);
cur_word_space = new_word_space;
cur_ws_id = install_word_space(cur_word_space * draw_scale);
2012-08-14 06:35:55 +00:00
}
}
// color
if(all_changed || color_changed)
{
GfxRGB new_color;
state->getFillRGB(&new_color);
if(!((new_color.r == cur_color.r) && (new_color.g == cur_color.g) && (new_color.b == cur_color.b)))
{
new_line_status = max(new_line_status, LineStatus::SPAN);
cur_color = new_color;
cur_color_id = install_color(&new_color);
}
}
2012-08-14 06:35:55 +00:00
reset_state_change();
}
void HTMLRenderer::reset_state_change()
{
all_changed = false;
rise_changed = false;
text_pos_changed = false;
font_changed = false;
ctm_changed = false;
text_mat_changed = false;
hori_scale_changed = false;
letter_space_changed = false;
word_space_changed = false;
color_changed = false;
}
void HTMLRenderer::prepare_line(GfxState * state)
{
// close old tags when necessary
if((line_status == LineStatus::NONE) || (new_line_status == LineStatus::NONE))
{
//pass
}
else if(new_line_status == LineStatus::DIV)
{
close_line();
}
else
{
assert(new_line_status == LineStatus::SPAN);
if(line_status == LineStatus::SPAN)
html_fout << "</span>";
else
assert(line_status == LineStatus::DIV);
// don't change line_status
}
// open new tags when necessary
if(line_status == LineStatus::NONE)
{
new_line_status = LineStatus::DIV;
//resync position
draw_ty = cur_ty + cur_rise;
draw_tx = cur_tx;
}
else
{
assert(new_line_status != LineStatus::DIV);
// horizontal position
// try to merge with the last line if possible
double target = (cur_tx - draw_tx) * draw_scale;
if(abs(target) < param->h_eps)
{
// ignore it
}
else
{
// don't close a pending span here, keep the styling
double w;
auto wid = install_whitespace(target, w);
html_fout << format("<span class=\"_ _%|1$x|\">%2%</span>") % wid % (target > 0 ? " " : "");
draw_tx += w / draw_scale;
}
}
if(new_line_status != LineStatus::NONE)
{
// have to open a new tag
if(new_line_status == LineStatus::SPAN)
{
html_fout << "<span class=\"";
}
else if (new_line_status == LineStatus::DIV)
{
// TODO: recheck descent/ascent
double x,y; // in user space
state->transform(state->getCurX(), state->getCurY(), &x, &y);
html_fout << format("<div style=\"bottom:%1%px;top:%2%px;left:%3%px;\" class=\"l ")
% (y + state->getFont()->getDescent() * draw_font_size)
% (pageHeight - y - state->getFont()->getAscent() * draw_font_size)
% x;
// "t0" is the id_matrix
if(cur_tm_id != 0)
html_fout << format("t%|1$x| ") % cur_tm_id;
html_fout << format("f%|1$x| s%|2$x| ") % cur_fn_id % cur_fs_id;
}
else
{
assert(false && "Bad value of new_line_status");
}
html_fout << format("c%|1$x|") % cur_color_id;
if(cur_ls_id != 0)
html_fout << format(" l%|1$x|") % cur_ls_id;
if(cur_ws_id != 0)
html_fout << format(" w%|1$x|") % cur_ws_id;
html_fout << "\">";
line_status = new_line_status;
}
2012-08-14 06:35:55 +00:00
}
void HTMLRenderer::close_line()
2012-08-14 06:35:55 +00:00
{
if(line_status == LineStatus::NONE)
return;
if(line_status == LineStatus::SPAN)
html_fout << "</span>";
else
assert(line_status == LineStatus::DIV);
2012-08-14 06:35:55 +00:00
html_fout << "</div>";
line_status = LineStatus::NONE;
}