forked from thjaeger/easystroke
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
610 additions
and
783 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
/* | ||
* Copyright (c) 2008-2009, Thomas Jaeger <[email protected]> | ||
* | ||
* Permission to use, copy, modify, and/or distribute this software for any | ||
* purpose with or without fee is hereby granted, provided that the above | ||
* copyright notice and this permission notice appear in all copies. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | ||
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION | ||
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN | ||
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
*/ | ||
#include "gesture.h" | ||
#include "prefdb.h" | ||
|
||
void update_triple(RTriple e, float x, float y, Time t) { | ||
e->x = x; | ||
e->y = y; | ||
e->t = t; | ||
} | ||
|
||
RTriple create_triple(float x, float y, Time t) { | ||
RTriple e(new Triple); | ||
update_triple(e, x, y, t); | ||
return e; | ||
} | ||
|
||
Stroke::Stroke(PreStroke &ps, int trigger_, int button_, bool timeout_) : button(button_), timeout(timeout_) { | ||
trigger = (trigger_ == get_default_button()) ? 0 : trigger_; | ||
|
||
if (ps.valid()) { | ||
stroke_t *s = stroke_alloc(ps.size()); | ||
for (std::vector<RTriple>::iterator i = ps.begin(); i != ps.end(); ++i) | ||
stroke_add_point(s, (*i)->x, (*i)->y); | ||
stroke_finish(s); | ||
stroke.reset(s, &stroke_free); | ||
} | ||
} | ||
|
||
int Stroke::compare(RStroke a, RStroke b, double &score) { | ||
score = 0.0; | ||
if (!a || !b) | ||
return -1; | ||
if (!a->timeout != !b->timeout) | ||
return -1; | ||
if (a->button != b->button) | ||
return -1; | ||
if (a->trigger != b->trigger) { | ||
if (a->trigger && b->trigger) | ||
return -1; | ||
if (a->trigger + b->trigger != get_default_button()) | ||
return -1; | ||
} | ||
if (!a->stroke || !b->stroke) { | ||
if (!a->stroke && !b->stroke) { | ||
score = 1.0; | ||
return 1; | ||
} | ||
else | ||
return -1; | ||
} | ||
double cost = stroke_compare(a->stroke.get(), b->stroke.get(), NULL, NULL); | ||
if (cost >= stroke_infinity) | ||
return -1; | ||
score = MAX(1.0 - 2.5*cost, 0.0); | ||
if (a->timeout) | ||
return score > 0.85; | ||
else | ||
return score > 0.7; | ||
} | ||
|
||
Glib::RefPtr<Gdk::Pixbuf> Stroke::draw(int size, double width) const { | ||
if (size != STROKE_SIZE || (width != 2.0 && width != 4.0)) | ||
return draw_(size, width); | ||
int i = width == 2.0; | ||
if (pb[i]) | ||
return pb[i]; | ||
pb[i] = draw_(size, width); | ||
return pb[i]; | ||
} | ||
|
||
Glib::RefPtr<Gdk::Pixbuf> Stroke::pbEmpty; | ||
|
||
Glib::RefPtr<Gdk::Pixbuf> Stroke::drawEmpty(int size) { | ||
if (size != STROKE_SIZE) | ||
return drawEmpty_(size); | ||
if (pbEmpty) | ||
return pbEmpty; | ||
pbEmpty = drawEmpty_(size); | ||
return pbEmpty; | ||
} | ||
|
||
|
||
RStroke Stroke::trefoil() { | ||
PreStroke s; | ||
const int n = 40; | ||
for (int i = 0; i<=n; i++) { | ||
double phi = M_PI*(-4.0*i/n)-2.7; | ||
double r = exp(1.0 + sin(6.0*M_PI*i/n)) + 2.0; | ||
s.add(create_triple(r*cos(phi), r*sin(phi), i)); | ||
} | ||
return Stroke::create(s, 0, 0, false); | ||
} |
Oops, something went wrong.