2019-11-20 05:10:19 +01:00
|
|
|
|
module main
|
|
|
|
|
|
|
|
|
|
import gg
|
|
|
|
|
import gx
|
2020-06-04 16:05:12 +02:00
|
|
|
|
import os
|
2019-11-20 05:10:19 +01:00
|
|
|
|
|
|
|
|
|
const (
|
2020-10-18 08:48:13 +02:00
|
|
|
|
win_width = 600
|
2020-05-30 12:52:23 +02:00
|
|
|
|
win_height = 700
|
2020-10-18 08:48:13 +02:00
|
|
|
|
bg_color = gx.white
|
2019-11-20 05:10:19 +01:00
|
|
|
|
)
|
|
|
|
|
|
2020-05-30 12:52:23 +02:00
|
|
|
|
const (
|
2020-10-18 08:48:13 +02:00
|
|
|
|
text = '
|
2020-05-30 12:52:23 +02:00
|
|
|
|
Once upon a midnight dreary, while I pondered, weak and weary,
|
|
|
|
|
Over many a quaint and curious volume of forgotten lore—
|
|
|
|
|
While I nodded, nearly napping, suddenly there came a tapping,
|
|
|
|
|
As of some one gently rapping, rapping at my chamber door.
|
|
|
|
|
“’Tis some visitor,” I muttered, “tapping at my chamber door—
|
|
|
|
|
Only this and nothing more.”
|
|
|
|
|
|
|
|
|
|
Ah, distinctly I remember it was in the bleak December;
|
|
|
|
|
And each separate dying ember wrought its ghost upon the floor.
|
|
|
|
|
Eagerly I wished the morrow;—vainly I had sought to borrow
|
|
|
|
|
From my books surcease of sorrow—sorrow for the lost Lenore—
|
|
|
|
|
For the rare and radiant maiden whom the angels name Lenore—
|
|
|
|
|
Nameless here for evermore.
|
|
|
|
|
|
|
|
|
|
And the silken, sad, uncertain rustling of each purple curtain
|
|
|
|
|
Thrilled me—filled me with fantastic terrors never felt before;
|
|
|
|
|
So that now, to still the beating of my heart, I stood repeating
|
|
|
|
|
“’Tis some visitor entreating entrance at my chamber door—
|
|
|
|
|
Some late visitor entreating entrance at my chamber door;—
|
|
|
|
|
This it is and nothing more.”
|
|
|
|
|
|
|
|
|
|
Presently my soul grew stronger; hesitating then no longer,
|
|
|
|
|
“Sir,” said I, “or Madam, truly your forgiveness I implore;
|
|
|
|
|
But the fact is I was napping, and so gently you came rapping,
|
|
|
|
|
And so faintly you came tapping, tapping at my chamber door,
|
|
|
|
|
That I scarce was sure I heard you”—here I opened wide the door;—
|
|
|
|
|
Darkness there and nothing more.
|
|
|
|
|
|
|
|
|
|
Deep into that darkness peering, long I stood there wondering, fearing,
|
|
|
|
|
Doubting, dreaming dreams no mortal ever dared to dream before;
|
|
|
|
|
But the silence was unbroken, and the stillness gave no token,
|
|
|
|
|
And the only word there spoken was the whispered word, “Lenore?”
|
|
|
|
|
This I whispered, and an echo murmured back the word, “Lenore!”—
|
|
|
|
|
Merely this and nothing more.
|
|
|
|
|
|
|
|
|
|
Back into the chamber turning, all my soul within me burning,
|
|
|
|
|
Soon again I heard a tapping somewhat louder than before.
|
|
|
|
|
“Surely,” said I, “surely that is something at my window lattice;
|
|
|
|
|
Let me see, then, what thereat is, and this mystery explore—
|
|
|
|
|
Let my heart be still a moment and this mystery explore;—
|
|
|
|
|
’Tis the wind and nothing more!”
|
|
|
|
|
'
|
2020-10-18 08:48:13 +02:00
|
|
|
|
lines = text.split('\n')
|
2020-05-30 12:52:23 +02:00
|
|
|
|
)
|
|
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
|
struct App {
|
2019-11-20 05:10:19 +01:00
|
|
|
|
mut:
|
2020-06-04 20:26:18 +02:00
|
|
|
|
gg &gg.Context
|
2019-11-20 05:10:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
|
fn main() {
|
2020-10-18 08:48:13 +02:00
|
|
|
|
mut app := &App{
|
|
|
|
|
gg: 0
|
|
|
|
|
}
|
2020-06-04 16:05:12 +02:00
|
|
|
|
app.gg = gg.new_context({
|
2019-11-20 05:35:13 +01:00
|
|
|
|
width: win_width
|
|
|
|
|
height: win_height
|
2020-06-04 16:05:12 +02:00
|
|
|
|
use_ortho: true // This is needed for 2D drawing
|
|
|
|
|
create_window: true
|
|
|
|
|
window_title: 'Empty window'
|
|
|
|
|
user_data: app
|
|
|
|
|
bg_color: bg_color
|
|
|
|
|
frame_fn: frame
|
2020-10-18 08:48:13 +02:00
|
|
|
|
font_path: os.resource_abs_path('../assets/fonts/RobotoMono-Regular.ttf') // window_user_ptr: ctx
|
2019-11-20 05:10:19 +01:00
|
|
|
|
})
|
2020-06-04 16:05:12 +02:00
|
|
|
|
app.gg.run()
|
2019-11-20 05:10:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
|
fn frame(mut app App) {
|
|
|
|
|
app.gg.begin()
|
2020-05-30 12:52:23 +02:00
|
|
|
|
mut y := 10
|
|
|
|
|
for line in lines {
|
2020-07-06 19:55:49 +02:00
|
|
|
|
app.gg.draw_text_def(10, y, line)
|
2020-06-04 16:05:12 +02:00
|
|
|
|
y += 30
|
2020-05-30 12:52:23 +02:00
|
|
|
|
}
|
2020-06-04 16:05:12 +02:00
|
|
|
|
app.gg.end()
|
2019-11-20 05:10:19 +01:00
|
|
|
|
}
|