/usr/share/faumachine/vhdl/user-begin.vhdl is in faumachine-data 20110812-1.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | --
-- $Id: user-begin.vhdl,v 1.7 2010-12-10 11:35:25 vrsieh Exp $
--
-- Copyright (C) 2007-2009 FAUmachine Team <info@faumachine.org>.
--
-- This program is free software. You can redistribute it and/or modify it
-- under the terms of the GNU General Public License, either version 2 of
-- the License, or (at your option) any later version. See COPYING.
--
library expect;
use expect.types.all;
use expect.procedures.all;
library ieee;
use ieee.std_logic_1164.ALL;
entity user is
port(
power_switch : out boolean;
power_button : out boolean;
reset_button : out boolean;
floppy : out cstring;
cdrom : out cstring;
image : out cstring;
key : out boolean_array(0 to 127);
mouse_dx : out integer;
mouse_dy : out integer;
mouse_dz : out integer;
mouse_button1 : out boolean;
mouse_button2 : out boolean;
mouse_button3 : out boolean;
mouse_button4 : out boolean;
mouse_button5 : out boolean;
screen_shot : out boolean;
rec : out boolean;
opt_screen : in opt_rgb
);
end user;
architecture behaviour of user is
signal int_text0 : cstring;
signal int_text1 : cstring;
signal int_text2 : cstring;
signal int_text3 : cstring;
signal int_text0_state : boolean;
signal int_text1_state : boolean;
signal int_text2_state : boolean;
signal int_text3_state : boolean;
signal int_asc_text0 : cstring;
signal int_asc_text1 : cstring;
signal int_asc_text2 : cstring;
signal int_asc_text3 : cstring;
signal int_asc_text0_state : boolean;
signal int_asc_text1_state : boolean;
signal int_asc_text2_state : boolean;
signal int_asc_text3_state : boolean;
signal int_slot0 : match;
signal int_slot1 : match;
signal int_slot2 : match;
signal int_slot3 : match;
signal int_slot4 : match;
signal int_slot5 : match;
signal int_slot6 : match;
signal int_slot7 : match;
signal int_slot8 : match;
signal int_slot9 : match;
signal int_slot10 : match;
signal int_slot11 : match;
signal int_slot12 : match;
signal int_slot13 : match;
signal int_slot14 : match;
signal int_slot15 : match;
signal mouse_pointerdir : cstring;
signal mouse_match : boolean;
signal mouse_event : boolean;
signal mouse_x : integer;
signal mouse_y : integer;
signal gfx_pattern0 : cstring;
signal gfx_pattern1 : cstring;
signal gfx_pattern2 : cstring;
signal gfx_pattern3 : cstring;
signal gfx_match0 : integer_array(1 to 4);
signal gfx_match1 : integer_array(1 to 4);
signal gfx_match2 : integer_array(1 to 4);
signal gfx_match3 : integer_array(1 to 4);
-- set to true, if some input should be performed regularly
-- to eventually wake up from an activated screen saver.
signal wakeup_screensaver : boolean := false;
begin
patternmatcher : patternm
port map (
video => opt_screen,
text0 => int_text0,
text0_state => int_text0_state,
text1 => int_text1,
text1_state => int_text1_state,
text2 => int_text2,
text2_state => int_text2_state,
text3 => int_text3,
text3_state => int_text3_state,
asc_text0 => int_asc_text0,
asc_text0_state => int_asc_text0_state,
asc_text1 => int_asc_text1,
asc_text1_state => int_asc_text1_state,
asc_text2 => int_asc_text2,
asc_text2_state => int_asc_text2_state,
asc_text3 => int_asc_text3,
asc_text3_state => int_asc_text3_state,
slot0 => int_slot0,
slot1 => int_slot1,
slot2 => int_slot2,
slot3 => int_slot3,
slot4 => int_slot4,
slot5 => int_slot5,
slot6 => int_slot6,
slot7 => int_slot7,
slot8 => int_slot8,
slot9 => int_slot9,
slot10 => int_slot10,
slot11 => int_slot11,
slot12 => int_slot12,
slot13 => int_slot13,
slot14 => int_slot14,
slot15 => int_slot15,
pattern_rectangle0 => gfx_pattern0,
pattern_rectangle1 => gfx_pattern1,
pattern_rectangle2 => gfx_pattern2,
pattern_rectangle3 => gfx_pattern3,
match_rectangle0_x => gfx_match0(1),
match_rectangle0_y => gfx_match0(2),
match_rectangle0_w => gfx_match0(3),
match_rectangle0_h => gfx_match0(4),
match_rectangle1_x => gfx_match1(1),
match_rectangle1_y => gfx_match1(2),
match_rectangle1_w => gfx_match1(3),
match_rectangle1_h => gfx_match1(4),
match_rectangle2_x => gfx_match2(1),
match_rectangle2_y => gfx_match2(2),
match_rectangle2_w => gfx_match2(3),
match_rectangle2_h => gfx_match2(4),
match_rectangle3_x => gfx_match3(1),
match_rectangle3_y => gfx_match3(2),
match_rectangle3_w => gfx_match3(3),
match_rectangle3_h => gfx_match3(4)
);
mouse_matcher : mouse_matcher
port map (
pointerdir => mouse_pointerdir,
match_state => mouse_match,
event => mouse_event,
x => mouse_x,
y => mouse_y,
slot0 => int_slot4,
slot1 => int_slot5,
slot2 => int_slot6,
slot3 => int_slot7,
slot4 => int_slot8,
slot5 => int_slot9,
slot6 => int_slot10,
slot7 => int_slot11,
slot8 => int_slot12,
slot9 => int_slot13,
slot10 => int_slot14,
slot11 => int_slot15
);
-- perform some activity, in case wakeup_screensaver is true
-- this helps in case the screensaver starts while waiting on an
-- image.
perform_activity : process
variable state : integer := 0;
begin
-- dummy loop, since expect doesn't repeat processes
while true loop
wait on wakeup_screensaver;
while wakeup_screensaver loop
-- don't immediately perform activity
wait on wakeup_screensaver for 300 sec;
if wakeup_screensaver then
-- perform some activity
case state is
when 0 =>
-- press shift key
key(42) <= true;
wait for 100 ms;
key(42) <= false;
state := 1;
when 1 =>
-- press alt key
key(56) <= true;
wait for 100 ms;
key(56) <= false;
state := 0;
end case;
end if;
end loop;
end loop;
end process perform_activity;
installation_script : process
variable x : integer;
variable y : integer;
begin
|