/usr/share/pyshared/VisionEgg/PyroApps/EPhysGUI.py is in python-visionegg 1.2.1-1.
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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 | #!/usr/bin/env python
#
# The Vision Egg: EPhysGUI
#
# Copyright (C) 2001-2004 Andrew Straw.
# Copyright (C) 2004 Imran S. Ali, Lachlan Dowd
# Copyright (C) 2004, 2008 California Institute of Technology
#
# Author: Andrew Straw <astraw@users.sourceforge.net>
# URL: <http://www.visionegg.org/>
#
# Distributed under the terms of the GNU Lesser General Public License
# (LGPL). See LICENSE.TXT that came with this file.
#
import VisionEgg
import sys, socket, re, time, string, types, os
import parser, symbol, token, compiler
import pickle, random, math, threading
import Tkinter, tkMessageBox, tkSimpleDialog, tkFileDialog
import StringIO
import Pyro
import numpy
import VisionEgg
import VisionEgg.PyroClient
import VisionEgg.PyroApps.ScreenPositionGUI
import VisionEgg.GUI
import VisionEgg.ParameterTypes as ve_types
# Add your client modules here
import VisionEgg.PyroApps.TargetGUI
import VisionEgg.PyroApps.MouseTargetGUI
import VisionEgg.PyroApps.FlatGratingGUI
import VisionEgg.PyroApps.SphereGratingGUI
import VisionEgg.PyroApps.SpinningDrumGUI
import VisionEgg.PyroApps.GridGUI
import VisionEgg.PyroApps.ColorCalGUI
import VisionEgg.PyroApps.DropinGUI
import VisionEgg.PyroApps.AST_ext as AST_ext
import VisionEgg.PyroApps.VarTypes as VarTypes
client_list = []
client_list.extend( VisionEgg.PyroApps.TargetGUI.get_control_list() )
client_list.extend( VisionEgg.PyroApps.MouseTargetGUI.get_control_list() )
client_list.extend( VisionEgg.PyroApps.FlatGratingGUI.get_control_list() )
client_list.extend( VisionEgg.PyroApps.SphereGratingGUI.get_control_list() )
client_list.extend( VisionEgg.PyroApps.SpinningDrumGUI.get_control_list() )
client_list.extend( VisionEgg.PyroApps.GridGUI.get_control_list() )
client_list.extend( VisionEgg.PyroApps.ColorCalGUI.get_control_list() )
client_list.extend( VisionEgg.PyroApps.DropinGUI.get_control_list() )
class ContainedObjectBase:
"""Base class to encapsulate objects, provides useful methods when used in GUI"""
def __init__(self):
raise RuntimeError("Abstract base class!")
def get_str_30(self):
return "**** this is a generic str_30 ****"
def get_contained(self):
return self.contained
header = "unknown parameters"
class ScrollListFrame(Tkinter.Frame):
def __init__(self,master=None,list_of_contained_objects=None,contained_objectbject_maker=None,
container_class=ContainedObjectBase,
**cnf):
Tkinter.Frame.__init__(self, master, **cnf)
if list_of_contained_objects is None:
self.list = []
else:
self.list = list_of_contained_objects
self.container_class = container_class
# allow column to expand
self.columnconfigure(0,weight=1)
# The frame that has the list and the vscroll
self.frame = Tkinter.Frame(self,borderwidth=2)
self.frame.grid(row=0,sticky="nwes")
# allow column to expand
self.frame.columnconfigure(0,weight=1)
self.frame.vscroll = Tkinter.Scrollbar(self.frame,orient=Tkinter.VERTICAL)
self.frame.hscroll = Tkinter.Scrollbar(self.frame,orient=Tkinter.HORIZONTAL)
self.frame.title = Tkinter.Listbox(
self.frame,
relief=Tkinter.FLAT,
font=('courier',10,'bold'),
height=1,
# selectbackground='#eed5b7',
# selectborderwidth=0,
# selectmode=None,
exportselection=0)
self.frame.title.insert(Tkinter.END, self.container_class.header)
self.frame.list = Tkinter.Listbox(
self.frame,
relief=Tkinter.SUNKEN,
font=('courier',10,'normal'),
width=40, height=10,
selectbackground='#eed5b7',
selectborderwidth=0,
selectmode=Tkinter.BROWSE,
xscroll=self.frame.hscroll.set,
yscroll=self.frame.vscroll.set,
exportselection=0)
self.frame.hscroll['command'] = self.delegate_hscroll
self.frame.hscroll.grid(row=3,column=0,sticky='we')
self.frame.vscroll['command'] = self.frame.list.yview
self.frame.vscroll.grid(row=2,column=1,sticky='ns')
self.frame.title.grid(row=1,column=0,ipady=0,pady=0,sticky='we')
self.frame.list.grid(row=2,column=0,sticky='nwes')
self.frame.list.bind('<Double-Button-1>',self.edit_selected)
# The buttons on bottom
self.bar = Tkinter.Frame(self,borderwidth=2)
self.bar.grid(row=1,sticky="we")
self.bar.add = Tkinter.Button(self.bar,text='Add...',command=self.add_new)
self.bar.add.grid(row=0,column=0,sticky='we')
self.bar.edit = Tkinter.Button(self.bar,text='Edit...',command=self.edit_selected)
self.bar.edit.grid(row=0,column=1,sticky='we')
self.bar.remove = Tkinter.Button(self.bar,text='Remove',command=self.remove_selected)
self.bar.remove.grid(row=0,column=2,sticky='we')
self.bar.move_up = Tkinter.Button(self.bar,text='Up',command=self.move_selected_up)
self.bar.move_up.grid(row=0,column=3,sticky='we')
self.bar.move_down = Tkinter.Button(self.bar,text='Down',command=self.move_selected_down)
self.bar.move_down.grid(row=0,column=4,sticky='we')
self.bar.tk_menuBar(self.bar.add,self.bar.remove)
#Lachie- My bar for setting parent
self.bar.merge = Tkinter.Button(self.bar,text='Merge/Unmerge',command=self.make_merge)
self.bar.merge.grid(row=0,column=5,sticky='we')
self.bar.tk_menuBar(self.bar.add,self.bar.remove)
self.update_now()
def list2D_coordinates(self, main_index, main_list):
# This is a function for finding the 2-d
# list coordinates of an element which may be inside a
# list-nested-list.
# eg. if x = [[e, e, e], [e], [e, e]]
# Then the coordinates of the element at index 4 is: (2, 0)
#
# Initialization:
i = -1
j = -1
element_count = 0
# Main body:
for nested_list in main_list:
j = -1
i = i + 1
for element in nested_list:
j = j + 1
element_count = element_count + 1
if (element_count - 1) == main_index:
return [i, j]
# Unsuccessful exit:
return [-1, -1]
def delegate_hscroll(self,*args,**kw):
self.frame.title.xview(*args,**kw)
self.frame.list.xview(*args,**kw)
def get_list_uncontained(self):
results = []
for contained_object_item in self.list:
#results.append( contained_object_item.get_contained() )
results.append( contained_object_item )
return results
def update_now(self):
self.frame.list.delete(0,Tkinter.END)
max_len = 0
for loop_container in self.list:
for loop in loop_container:
item_str_30 = loop.get_str_30()
max_len = max(max_len,len(item_str_30))
self.frame.list.insert(Tkinter.END,item_str_30)
self.frame.list.insert(Tkinter.END,"")
self.frame.title.delete(0,Tkinter.END)
self.frame.title.insert(Tkinter.END, self.container_class.header.ljust(max_len))
def add_new(self):
contained_object = self.make_contained_object(self.container_class)
if contained_object:
self.list.append( [contained_object] )
self.update_now()
def edit_selected(self,dummy_arg=None):
selected = self.get_selected()
# Get 2-D list coordinates of selected object of class "LoopContainedObject":
loop_coordinates = self.list2D_coordinates(selected, self.list)
main_list_index = loop_coordinates[0]
loop_list_index = loop_coordinates[1]
if selected is not None:
if len(self.list[main_list_index]) == 1:
orig_contained_object = self.list[main_list_index][loop_list_index]
modified_contained_object = self.edit_contained_object( orig_contained_object )
if modified_contained_object is not None: # "Cancel" press results in None
self.list[main_list_index][loop_list_index] = modified_contained_object
self.update_now()
else:
tkMessageBox.showerror("Cannot edit this variable", "This variable needs to be isolated/unmerged")
def remove_selected(self):
selected = self.get_selected()
# Get 2-D list coordinates of selected object of class "LoopContainedObject":
loop_coordinates = self.list2D_coordinates(selected, self.list)
main_list_index = loop_coordinates[0]
loop_list_index = loop_coordinates[1]
if selected is not None:
del self.list[main_list_index][loop_list_index]
if self.list[main_list_index] == []:
del self.list[main_list_index]
self.update_now()
def move_selected_up(self,dummy_arg=None):
selected = self.get_selected()
# Get 2-D list coordinates of selected object of class "LoopContainedObject":
loop_coordinates = self.list2D_coordinates(selected, self.list)
main_list_index = loop_coordinates[0]
loop_list_index = loop_coordinates[1]
new_selected_index = selected
if selected is not None:
# If the selected variable is first in its "loop_list":
if loop_list_index == 0:
# If not the first "loop_list":
if main_list_index != 0:
# Then we move up the entire "loop_list":
selected_loop_list = self.list[main_list_index]
del self.list[main_list_index]
new_main_list_index = main_list_index - 1
self.list.insert(new_main_list_index, selected_loop_list)
new_selected_index = selected - len(self.list[main_list_index])
self.update_now()
# Else we just move up a variable within a "loop_list":
else:
selected_loop_container = self.list[main_list_index][loop_list_index]
del self.list[main_list_index][loop_list_index]
new_loop_list_index = loop_list_index - 1
self.list[main_list_index].insert(new_loop_list_index, selected_loop_container)
new_selected_index = selected - 1
self.update_now()
new_selected_index = self.map_to_listbox_index(new_selected_index)
self.frame.list.selection_set(new_selected_index)
def move_selected_down(self,dummy_arg=None):
selected = self.get_selected()
# Get 2-D list coordinates of selected object of class "LoopContainedObject":
loop_coordinates = self.list2D_coordinates(selected, self.list)
main_list_index = loop_coordinates[0]
loop_list_index = loop_coordinates[1]
new_selected_index = selected
if selected is not None:
# If the selected variable is last in its "loop_list":
if loop_list_index == (len(self.list[main_list_index]) - 1):
# If not the last "loop_list":
if main_list_index != (len(self.list) - 1):
# Then we move down the entire "loop_list":
selected_loop_list = self.list[main_list_index]
del self.list[main_list_index]
new_main_list_index = main_list_index + 1
self.list.insert(new_main_list_index, selected_loop_list)
new_selected_index = selected + len(self.list[main_list_index])
self.update_now()
# Else we just move down a variable within a "loop_list":
#elif loop_list_index != (len(self.list[main_list_index]) - 1):
else:
selected_loop_container = self.list[main_list_index][loop_list_index]
del self.list[main_list_index][loop_list_index]
new_loop_list_index = loop_list_index + 1
self.list[main_list_index].insert(new_loop_list_index, selected_loop_container)
new_selected_index = selected + 1
self.update_now()
#else:
#tkMessageBox.showerror("Cannot move this variable down", "Select unmerge instead")
new_selected_index = self.map_to_listbox_index(new_selected_index)
self.frame.list.selection_set(new_selected_index)
def make_merge(self):
# Notes:
# "self.list" is a list of lists, each of which, a
# "loop_list", contains "LoopContainedObject" class objects:
# eg. [[a], [b, c], [d]]
selected = self.get_selected()
merge_error = 0
merge_error_msg = ""
# The purpose of this function is to "merge" selected objects of class
# "LoopContainedObject" into a preceding list:
# eg. [[a], [b, c], [d]] => [[a], [b, c, d]]]
# where selected 'd' was "merged" into preceding list.
# Note, this function can also perform the reverse, provided that the
# the selected object of class "LoopContainedObject" is the LAST one
# in its "loop_list".
# Supported cases:
# [[a], [b*, c], [d]] => [[a, b, c], [d]] merge
# [[a], [b, c*], [d]] => [[a], [b], [c, d]] unmerge
# Unsupported cases:
# [[a], [b, c*, d], [e]] => cannot unmerge!
# Get 2-D list coordinates of selected object of class "LoopContainedObject":
loop_coordinates = self.list2D_coordinates(selected, self.list)
main_list_index = loop_coordinates[0]
loop_list_index = loop_coordinates[1]
# Checking that an item is actually selected:
if selected is not None:
selected_loop_list = self.list[main_list_index]
selected_loop_container = selected_loop_list[loop_list_index]
preceding_loop_container = self.list[main_list_index - 1][0]
# Trying to perform merge?
if loop_list_index == 0:
# Ensure selected "LoopContainerObject" is not in first "loop_list":
if main_list_index > 0:
# Can only carry out merge if "Loop" object sequence lengths are
# the same length within a "loop_list":
if len(selected_loop_container.contained.parameters.sequence) == len(preceding_loop_container.contained.parameters.sequence):
# Perform the merge. All variables that are currently merged with the selected variable,
# are merged with the new variable(s) as well.
i = 0
max_index = len(selected_loop_list)
while i < max_index:
dummy_loop_container = selected_loop_list[0]
del self.list[main_list_index][0]
self.list[main_list_index - 1].append(dummy_loop_container)
i = i + 1
# Remove the selected "loop_list" if it is now empty:
if self.list[main_list_index] == []:
del self.list[main_list_index]
else:
merge_error = 1
merge_error_msg = "Cannot merge variables with different sequence lengths"
else:
merge_error = 3
#merge_error_msg = "Variable is at the top level"
# Trying to perform an "unmerge":
else:
# Ensure selected "LoopContainerObject" is last object in its "loop_list":
if loop_list_index == (len(selected_loop_list) - 1):
# Perform the unmerge:
del self.list[main_list_index][loop_list_index]
self.list.insert((main_list_index + 1), [selected_loop_container])
else:
merge_error = 2
merge_error_msg = "Unmerge lowest variable in this cluster first"
if merge_error == 1:
tkMessageBox.showerror("Cannot perform merge", merge_error_msg)
elif merge_error == 2:
tkMessageBox.showerror("Cannot perform unmerge", merge_error_msg)
elif merge_error == 3:
# non critical errors
pass
else:
#debugger:
#print len(self.list)
#print ""
#for x in self.list:
# print len(x)
#print "--------------"
self.update_now()
def make_contained_object(self, container_class):
"""Factory function for ContainedObjectBase"""
if container_class == LoopContainedObject:
return self.make_loop_contained_object()
params = {}
p = container_class.contained_class.parameters_and_defaults
keys = p.keys()
keys.sort()
for pname in keys:
if p[pname][1] == ve_types.String:
params[pname] = tkSimpleDialog.askstring(pname,pname,initialvalue=p[pname][0])
elif p[pname][1] == ve_types.Integer:
params[pname] = tkSimpleDialog.askinteger(pname,pname,initialvalue=p[pname][0])
elif p[pname][1] == ve_types.Real:
params[pname] = tkSimpleDialog.askfloat(pname,pname,initialvalue=p[pname][0])
elif p[pname][1] == ve_types.Sequence:
params[pname] = eval("["+tkSimpleDialog.askstring(pname,pname,initialvalue="1,2,3")+"]")
if type(params[pname]) is not types.ListType:
raise ValueError("You must enter a list in the form of '[1,2,3]'")
else:
raise NotImplementedError("Don't know about type %s"%(p[pname][1],))
if params[pname] is None:
raise RuntimeError("Input cancelled")
contained = container_class.contained_class(**params) # call constructor
return container_class(contained)
def edit_contained_object(self, contained_object):
if not isinstance(contained_object,LoopContainedObject):
raise NotImplementedError("")
orig_contained = contained_object.get_contained()
d = LoopParamDialog(self, title="Loop Parameters", orig_values=orig_contained )
if d.result:
return LoopContainedObject(d.result)
else:
return
def make_loop_contained_object(self):
d = LoopParamDialog(self, title="Loop Parameters" )
if d.result:
return LoopContainedObject(d.result)
else:
return
# Returns index of selected item ignoring blank listbox entries:
# eg. if listbox had:
#
# 0 a
# 1 b
# 2
# 3 c
# 4 d
#
# Then the index of element 'c' would be 2
def get_selected(self):
items = self.frame.list.curselection()
try:
items = map(int, items)
except ValueError: pass
if len(items) > 0:
selected_item_index = items[0]
if self.frame.list.get(selected_item_index) != "":
blankentrycount = 0
i = 0
while i < selected_item_index:
if self.frame.list.get(i) == "":
blankentrycount = blankentrycount + 1
i = i + 1
return (selected_item_index - blankentrycount)
return None
# Performs reverse of above:
# eg. if listbox had:
#
# 0 a
# 1 b
# 2
# 3 c
# 4 d
#
# Then "mapping" of given index 2 would result in return value of 3
def map_to_listbox_index(self, index):
validentrycount = 0
i = 0
while i < self.frame.list.size():
if self.frame.list.get(i) != "":
validentrycount = validentrycount + 1
if validentrycount == (index + 1):
return i
i = i + 1
return -1
###################################################
class Loop(VisionEgg.ClassWithParameters):
parameters_and_defaults = {'variable':('<repeat>',
ve_types.String),
'sequence':([1, 1, 1],
ve_types.Sequence(ve_types.Real)),
'rest_duration_sec':(1.0,
ve_types.Real)}
__slots__ = (
'num_done',
)
def __init__(self,**kw):
VisionEgg.ClassWithParameters.__init__(self,**kw)
self.num_done = 0
def is_done(self):
return self.num_done >= len(self.parameters.sequence)
def get_current(self):
return self.parameters.sequence[self.num_done]
def advance(self):
self.num_done += 1
def reset(self):
self.num_done = 0
class LoopContainedObject(ContainedObjectBase):
"""Container for Loop class"""
contained_class = Loop
header = " variable rest N values"
def __init__(self,contained):
self.contained = contained
def get_str_30(self):
p = self.contained.parameters
seq_str = ""
for val in p.sequence:
seq_str += str(val) + " "
name_str = p.variable
if len(name_str) > 15:
name_str = name_str[:15]
return "% 15s % 4s % 4d % 4s"%(name_str, str(p.rest_duration_sec), len(p.sequence), seq_str)
class LoopParamDialog(tkSimpleDialog.Dialog):
def __init__(self,*args,**kw):
#intercept orig_values argument
if kw.has_key('orig_values'):
self.orig_values = kw['orig_values']
del kw['orig_values']
else:
self.orig_values = None
return tkSimpleDialog.Dialog.__init__(self, *args, **kw )
def body(self,master):
Tkinter.Label(master,
text="Add sequence of automatic variable values",
font=("Helvetica",12,"bold"),).grid(row=0,column=0,columnspan=2)
var_frame = Tkinter.Frame(master,
relief=Tkinter.GROOVE,
borderwidth=2)
var_frame.grid(row=1,column=0)
sequence_frame = Tkinter.Frame(master)
sequence_frame.grid(row=1,column=1)
rest_dur_frame = Tkinter.Frame(master)
rest_dur_frame.grid(row=2,column=0,columnspan=2)
# loopable variable frame stuff
global loopable_variables
num_cols = int(math.ceil(len(loopable_variables)/10.0)) # 10 variables per column
var_frame_row = 0
Tkinter.Label(var_frame,
text="Select a variable",
font=("Helvetica",12,"bold"),).grid(row=var_frame_row,
column=0,
columnspan=num_cols)
self.var_name = Tkinter.StringVar()
self.var_name.set("<repeat>")
var_names = loopable_variables[:] # copy
var_names.sort()
var_frame_row += 1
Tkinter.Radiobutton( var_frame,
text="Repeat (Average)",
variable=self.var_name,
value="<repeat>",
anchor=Tkinter.W).grid(row=var_frame_row,
column=0,
sticky="w")
var_frame_row += 1
for var_name in var_names:
use_row = var_frame_row%10+1
Tkinter.Radiobutton( var_frame,
text=var_name,
variable=self.var_name,
value=var_name,
anchor=Tkinter.W).grid(row=use_row,
column=int(math.floor(var_frame_row/10.)),
sticky="w")
var_frame_row += 1
# sequence entry frame
seq_row = 0
Tkinter.Label(sequence_frame,
text="Sequence values",
font=("Helvetica",12,"bold"),).grid(row=seq_row,column=0,columnspan=2)
seq_row += 1
self.sequence_type = Tkinter.StringVar()
self.sequence_type.set("manual")
Tkinter.Radiobutton( sequence_frame,
text="Manual:",
variable=self.sequence_type,
value="manual",
anchor=Tkinter.W).grid(row=seq_row,column=0,sticky="w")
self.sequence_manual_string = Tkinter.StringVar()
self.sequence_manual_string.set("[1,2,3]")
Tkinter.Entry(sequence_frame,
textvariable=self.sequence_manual_string).grid(row=seq_row,column=1)
seq_row += 1
Tkinter.Radiobutton( sequence_frame,
text="Linear:",
variable=self.sequence_type,
value="linear",
anchor=Tkinter.W).grid(row=seq_row,column=0,sticky="w")
self.lin_start_tk = Tkinter.DoubleVar()
self.lin_start_tk.set(1.0)
self.lin_stop_tk = Tkinter.DoubleVar()
self.lin_stop_tk.set(100.0)
self.lin_n_tk = Tkinter.IntVar()
self.lin_n_tk.set(3)
lin_frame = Tkinter.Frame( sequence_frame)
lin_frame.grid(row=seq_row,column=1)
Tkinter.Label(lin_frame,text="start:").grid(row=0,column=0)
Tkinter.Entry(lin_frame,textvariable=self.lin_start_tk,width=6).grid(row=0,column=1)
Tkinter.Label(lin_frame,text=" stop:").grid(row=0,column=2)
Tkinter.Entry(lin_frame,textvariable=self.lin_stop_tk,width=6).grid(row=0,column=3)
Tkinter.Label(lin_frame,text=" N:").grid(row=0,column=4)
Tkinter.Entry(lin_frame,textvariable=self.lin_n_tk,width=6).grid(row=0,column=5)
seq_row += 1
Tkinter.Radiobutton( sequence_frame,
text="Log:",
variable=self.sequence_type,
value="log",
anchor=Tkinter.W).grid(row=seq_row,column=0,sticky="w")
self.log_start_tk = Tkinter.DoubleVar()
self.log_start_tk.set(-1.0)
self.log_stop_tk = Tkinter.DoubleVar()
self.log_stop_tk.set(2.0)
self.log_n_tk = Tkinter.IntVar()
self.log_n_tk.set(5)
log_frame = Tkinter.Frame( sequence_frame)
log_frame.grid(row=seq_row,column=1)
Tkinter.Label(log_frame,text="start: 10^").grid(row=0,column=0)
Tkinter.Entry(log_frame,textvariable=self.log_start_tk,width=6).grid(row=0,column=1)
Tkinter.Label(log_frame,text=" stop: 10^").grid(row=0,column=2)
Tkinter.Entry(log_frame,textvariable=self.log_stop_tk,width=6).grid(row=0,column=3)
Tkinter.Label(log_frame,text=" N:").grid(row=0,column=4)
Tkinter.Entry(log_frame,textvariable=self.log_n_tk,width=6).grid(row=0,column=5)
seq_row += 1
Tkinter.Radiobutton( sequence_frame,
text="Log:",
variable=self.sequence_type,
value="logb",
anchor=Tkinter.W).grid(row=seq_row,column=0,sticky="w")
self.logb_start_tk = Tkinter.DoubleVar()
self.logb_start_tk.set(0.1)
self.logb_stop_tk = Tkinter.DoubleVar()
self.logb_stop_tk.set(100.0)
self.logb_n_tk = Tkinter.IntVar()
self.logb_n_tk.set(5)
logb_frame = Tkinter.Frame( sequence_frame)
logb_frame.grid(row=seq_row,column=1)
Tkinter.Label(logb_frame,text="start:").grid(row=0,column=0)
Tkinter.Entry(logb_frame,textvariable=self.logb_start_tk,width=6).grid(row=0,column=1)
Tkinter.Label(logb_frame,text=" stop:").grid(row=0,column=2)
Tkinter.Entry(logb_frame,textvariable=self.logb_stop_tk,width=6).grid(row=0,column=3)
Tkinter.Label(logb_frame,text=" N:").grid(row=0,column=4)
Tkinter.Entry(logb_frame,textvariable=self.logb_n_tk,width=6).grid(row=0,column=5)
# rest duration frame
Tkinter.Label(rest_dur_frame,
text="Other sequence parameters",
font=("Helvetica",12,"bold"),).grid(row=0,column=0,columnspan=2)
Tkinter.Label(rest_dur_frame,
text="Interval duration (seconds)").grid(row=1,column=0)
self.rest_dur = Tkinter.DoubleVar()
self.rest_dur.set(0.5)
Tkinter.Entry(rest_dur_frame,
textvariable=self.rest_dur,
width=10).grid(row=1,column=1)
self.shuffle_tk_var = Tkinter.BooleanVar()
self.shuffle_tk_var.set(0)
Tkinter.Checkbutton( rest_dur_frame,
text="Shuffle sequence order",
variable=self.shuffle_tk_var).grid(row=2,column=0,columnspan=2)
if self.orig_values is not None:
self.var_name.set( self.orig_values.parameters.variable )
self.sequence_manual_string.set( str(self.orig_values.parameters.sequence) )
self.rest_dur.set( self.orig_values.parameters.rest_duration_sec )
def validate(self):
if self.sequence_type.get() == "manual":
try:
seq = eval(self.sequence_manual_string.get())
except Exception, x:
tkMessageBox.showwarning("Invalid sequence parameters",
"Manual sequence entry: %s"%(str(x),),
parent=self)
return 0
if type(seq) != types.ListType:
tkMessageBox.showwarning("Invalid sequence parameters",
"Manual sequence entry: Not a list",
parent=self)
return 0
elif self.sequence_type.get() == "linear":
start = self.lin_start_tk.get()
stop = self.lin_stop_tk.get()
n = self.lin_n_tk.get()
if n < 2:
tkMessageBox.showwarning("Invalid sequence parameters",
"Must have n >= 2.",
parent=self)
return 0
incr = (stop-start)/float(n-1)
seq = range(n)
for i in range(n):
seq[i] = i*incr + start
elif self.sequence_type.get() == "log":
start = self.log_start_tk.get()
stop = self.log_stop_tk.get()
n = self.log_n_tk.get()
if n < 2:
tkMessageBox.showwarning("Invalid sequence parameters",
"Must have n >= 2.",
parent=self)
return 0
incr = (stop-start)/float(n-1)
seq = range(n)
for i in range(n):
seq[i] = 10.0**( i*incr + start )
elif self.sequence_type.get() == "logb":
start = self.logb_start_tk.get()
stop = self.logb_stop_tk.get()
start = math.log10(start)
stop = math.log10(stop)
n = self.logb_n_tk.get()
if n < 2:
tkMessageBox.showwarning("Invalid sequence parameters",
"Must have n >= 2.",
parent=self)
return 0
incr = (stop-start)/float(n-1)
seq = range(n)
for i in range(n):
seq[i] = 10.0**( i*incr + start )
else:
tkMessageBox.showwarning("Invalid sequence parameters",
"Invalid sequence type.",
parent=self)
return 0
rest_dur_sec = self.rest_dur.get()
if self.shuffle_tk_var.get():
random.shuffle(seq)
self.result = Loop(variable=self.var_name.get(),
sequence=seq,
rest_duration_sec=rest_dur_sec)
return 1
def destroy(self):
# clear tk variables
self.var_name = None
self.sequence_type = None
self.sequence_manual_string = None
self.rest_dur = None
# call master's destroy method
tkSimpleDialog.Dialog.destroy(self)
def get_server(hostname="",port=7766):
class ConnectWindow(Tkinter.Frame):
def __init__(self,master=None,hostname="",port=7766,**kw):
# Allow VisionEgg Tkinter exception window
VisionEgg.config._Tkinter_used = True
Tkinter.Frame.__init__(self,master, **kw)
self.winfo_toplevel().title("EPhysGUI Connect - Vision Egg")
current_row = 0
Tkinter.Message(self,\
text='Welcome to the "EPhys GUI" of the Vision Egg!\n\n'+\
'Please enter the hostname '+\
'and port number '+\
'of the computer on which you have the '+\
'"EPhys server" running.').grid(row=current_row,column=0,columnspan=2)
hostname = 'localhost'
self.hostname_tk = Tkinter.StringVar()
self.hostname_tk.set(hostname)
current_row += 1
Tkinter.Label(self,text="Hostname:").grid(row=current_row, column=0)
Tkinter.Entry(self,textvariable=self.hostname_tk).grid(row=current_row, column=1)
self.port_tk = Tkinter.IntVar()
self.port_tk.set(port)
current_row += 1
Tkinter.Label(self,text="Port:").grid(row=current_row, column=0)
Tkinter.Entry(self,textvariable=self.port_tk).grid(row=current_row, column=1)
current_row += 1
bf = Tkinter.Frame(self)
bf.grid(row=current_row,column=0,columnspan=2)
ok=Tkinter.Button(bf,text="OK",command=self.ok)
ok.grid(row=0,column=0)
ok.focus_force()
ok.bind('<Return>',self.ok)
Tkinter.Button(bf,text="Cancel",command=self.quit).grid(row=0,column=1)
self.result = None
def ok(self,dummy_arg=None):
self.result = (self.hostname_tk.get(),self.port_tk.get())
self.destroy()
self.quit()
connect_win = ConnectWindow(hostname=hostname,port=port)
connect_win.pack()
connect_win.mainloop()
return connect_win.result
class GammaFrame(Tkinter.Frame):
def __init__(self,
master=None,
ephys_server=None,**kw):
Tkinter.Frame.__init__(self,master,**kw)
self.winfo_toplevel().title("Gamma - Vision Egg")
self.ephys_server = ephys_server
self.columnconfigure(0,weight=1)
row = 0
Tkinter.Label(self,
font=("Helvetica",12,"bold"),
text="Load Gamma Table").grid(row=row)
row += 1
Tkinter.Button(self,
text="Set from .ve_gamma file...",
command=self.set_from_file).grid(row=row,sticky="w")
row += 1
Tkinter.Button(self,
text="Set to monitor default (linear gamma table)",
command=self.set_monitor_default).grid(row=row,sticky="w")
row += 1
invert_frame = Tkinter.Frame(self)
invert_frame.grid(row=row,sticky="we")
Tkinter.Button(invert_frame,
text="Linearize luminance for gammas",
command=self.linearize).grid(row=0,column=0)
Tkinter.Label(invert_frame,
text="Red:").grid(row=0,column=1)
self.red_gamma = Tkinter.DoubleVar()
self.red_gamma.set(2.2)
Tkinter.Entry(invert_frame,
textvariable=self.red_gamma,
width=5).grid(row=0,column=2)
Tkinter.Label(invert_frame,
text="Green:").grid(row=0,column=3)
self.green_gamma = Tkinter.DoubleVar()
self.green_gamma.set(2.2)
Tkinter.Entry(invert_frame,
textvariable=self.green_gamma,
width=5).grid(row=0,column=4)
Tkinter.Label(invert_frame,
text="Blue:").grid(row=0,column=5)
self.blue_gamma = Tkinter.DoubleVar()
self.blue_gamma.set(2.2)
Tkinter.Entry(invert_frame,
textvariable=self.blue_gamma,
width=5).grid(row=0,column=6)
row += 1
self.success_label = Tkinter.Label(self)
self.success_label.grid(row=row)
def get_corrected_gamma_table(self,gamma):
# c is a constant scale factor. It is always 1.0 when
# luminance is normalized to range [0.0,1.0] and input units
# in range [0.0,1.0], as is OpenGL standard.
c = 1.0
inc = 1.0/255
target_luminances = numpy.arange(0.0,1.0+inc,inc)
output_ramp = numpy.zeros(target_luminances.shape,dtype=numpy.int32)
for i in range(len(target_luminances)):
L = target_luminances[i]
if L == 0.0:
v_88fp = 0
else:
v = math.exp( (math.log(L) - math.log(c)) /gamma)
v_88fp = int(round((v*255) * 256)) # convert to from [0.0,1.0] floating point to [0.0,255.0] 8.8 fixed point
output_ramp[i] = v_88fp # 8.8 fixed point format
return list(output_ramp) # convert to Python list
def linearize(self, dummy_arg=None):
self.success_label.configure(text="Setting...")
try:
red = self.get_corrected_gamma_table(self.red_gamma.get())
green = self.get_corrected_gamma_table(self.green_gamma.get())
blue = self.get_corrected_gamma_table(self.blue_gamma.get())
except:
self.success_label.configure(text="Calculation error")
raise
try:
if self.ephys_server.set_gamma_ramp(red,green,blue):
self.success_label.configure(text="Success")
else:
self.success_label.configure(text="Failed: Invalid gamma values?")
except Exception,x:
self.success_label.configure(text="Failed: %s: %s"%(x.__class__,str(x)))
raise
def set_monitor_default(self, dummy_arg=None):
self.success_label.configure(text="Setting...")
try:
red = self.get_corrected_gamma_table(1.0) # linear gamma table
except:
self.success_label.configure(text="Calculation error")
raise
green = red
blue = red
try:
if self.ephys_server.set_gamma_ramp(red,green,blue):
self.success_label.configure(text="Success")
else:
self.success_label.configure(text="Failed: Invalid gamma values?")
except Exception,x:
self.success_label.configure(text="Failed: %s: %s"%(x.__class__,str(x)))
raise
def set_from_file(self):
self.success_label.configure(text="Setting...")
filename = tkFileDialog.askopenfilename(
parent=self,
defaultextension=".ve_gamma",
filetypes=[('Configuration file','*.ve_gamma')],
initialdir=VisionEgg.config.VISIONEGG_USER_DIR)
if not filename:
self.success_label.configure(text="No file given")
return
fd = open(filename,"r")
gamma_values = []
for line in fd.readlines():
line = line.strip() # remove leading/trailing whitespace
if line.startswith("#"): # comment, ignore
continue
try:
gamma_values.append( map(int, line.split() ) )
except Exception, x:
self.success_label.configure(text="File error")
raise
if len(gamma_values[-1]) != 3:
self.success_label.configure(text="File error")
raise RuntimeError("expected 3 values per gamma entry")
if len(gamma_values) != 256:
self.success_label.configure(text="File error")
raise RuntimeError("expected 256 gamma entries")
red, green, blue = zip(*gamma_values)
try:
if self.ephys_server.set_gamma_ramp(red,green,blue):
self.success_label.configure(text="Success")
else:
self.success_label.configure(text="Failed: Invalid gamma values?")
except Exception,x:
self.success_label.configure(text="Failed: %s: %s"%(x.__class__,str(x)))
raise
class ImageSequenceLauncher(Tkinter.Toplevel):
def __init__(self,master=None,ephys_server=None,**cnf):
Tkinter.Toplevel.__init__(self,master,**cnf)
if ephys_server is None:
raise ValueError("Must specify ephys_server")
self.ephys_server = ephys_server
self.columnconfigure(1,weight=1)
row = 0
Tkinter.Label(self,text="Frames per second").grid(row=row,column=0)
self.fps_var = Tkinter.DoubleVar()
self.fps_var.set(12.0)
Tkinter.Entry(self,textvariable=self.fps_var).grid(row=row,column=1,sticky="we")
row += 1
Tkinter.Label(self,text="Filename base").grid(row=row,column=0)
self.filename_base = Tkinter.StringVar()
self.filename_base.set("im")
Tkinter.Entry(self,textvariable=self.filename_base).grid(row=row,column=1,sticky="we")
row += 1
Tkinter.Label(self,text="Filename suffix").grid(row=row,column=0)
self.filename_suffix = Tkinter.StringVar()
self.filename_suffix.set(".tif")
Tkinter.Entry(self,textvariable=self.filename_suffix).grid(row=row,column=1,sticky="we")
row += 1
Tkinter.Label(self,text="Save directory on server").grid(row=row,column=0)
self.server_save_dir = Tkinter.StringVar()
server_dir = self.ephys_server.get_cwd()
self.server_save_dir.set(server_dir)
Tkinter.Entry(self,textvariable=self.server_save_dir).grid(row=row,column=1,sticky="we")
row += 1
Tkinter.Button(self,text="Save movie",command=self.do_it).grid(row=row,column=0,columnspan=2)
self.focus_set()
self.grab_set()
def do_it(self):
fps = self.fps_var.get()
filename_base = self.filename_base.get()
filename_suffix = self.filename_suffix.get()
server_save_dir = self.server_save_dir.get()
self.ephys_server.save_image_sequence(fps=fps,
filename_base=filename_base,
filename_suffix=filename_suffix,
save_dir=server_save_dir)
self.destroy()
class AppWindow(Tkinter.Frame):
def __init__(self,
master=None,
client_list=None,
server_hostname='',
server_port=7766,
**cnf):
if hasattr(VisionEgg, '_exception_hook_keeper'):
# Keep original exception handler
self._orig_report_callback_exception = Tkinter.Tk.report_callback_exception
self._tk = Tkinter.Tk
# Use Vision Egg exception handler
Tkinter.Tk.report_callback_exception = VisionEgg._exception_hook_keeper.handle_exception
# Allow VisionEgg Tkinter exception window
VisionEgg.config._Tkinter_used = True
# create myself
Tkinter.Frame.__init__(self,master, **cnf)
self.winfo_toplevel().title("EPhysGUI - Vision Egg")
self.client_list = client_list
self.server_hostname = server_hostname
self.server_port = server_port
self.pyro_client = VisionEgg.PyroClient.PyroClient(self.server_hostname,self.server_port)
self.ephys_server = self.pyro_client.get("ephys_server")
self.ephys_server.first_connection()
self.stim_onset_cal_tk_var = Tkinter.BooleanVar()
self.stim_onset_cal_tk_var.set(0)
self.autosave_dir = Tkinter.StringVar()
self.autosave_dir.set( os.path.abspath(os.curdir) )
self.autosave_basename = Tkinter.StringVar()
# create menu bar
self.bar = Tkinter.Menu(tearoff=0)
top = self.winfo_toplevel()
top.configure(menu=self.bar)
self.bar.file_menu = Tkinter.Menu(self.bar, name="file_menu")
self.bar.add_cascade(label="File",menu=self.bar.file_menu)
self.bar.file_menu.add_command(label='Save image sequence...', command=self.save_image_sequence)
self.bar.file_menu.add_command(label='Save configuration file...', command=self.save_config)
self.bar.file_menu.add_command(label='Load configuration file...', command=self.load_config)
self.bar.file_menu.add_command(label='Load auto-saved .py parameter file...', command=self.load_params)
self.bar.file_menu.add_separator()
self.bar.file_menu.add_command(label='Load Vision Egg script...', command=self.load_demoscript)
self.bar.file_menu.add_separator()
self.quit_server_too = Tkinter.BooleanVar()
self.quit_server_too.set(1)
self.bar.file_menu.add_checkbutton(label='Quit server too',
variable=self.quit_server_too)
self.bar.file_menu.add_command(label='Quit',
command=self.quit,
)
stimkey = self.ephys_server.get_stimkey()
self.stimulus_tk_var = Tkinter.StringVar()
self.stimulus_tk_var.set( stimkey )
self.bar.stimuli_menu = Tkinter.Menu(self.bar, name="stimuli_menu")
self.bar.add_cascade(label="Stimuli",menu=self.bar.stimuli_menu)
for maybe_stimkey, maybe_control_frame, maybe_title in self.client_list:
if maybe_title != "Vision Egg Script":
self.bar.stimuli_menu.add_radiobutton(label=maybe_title,
command=self.change_stimulus,
variable=self.stimulus_tk_var,
value=maybe_stimkey)
self.bar.calibration_menu = Tkinter.Menu(self.bar, name="calibration_menu")
self.bar.add_cascade(label="Configure/Calibrate",
menu=self.bar.calibration_menu)
self.bar.calibration_menu.add_command(label='3D Perspective...', command=self.launch_screen_pos)
self.bar.calibration_menu.add_command(label='Stimulus onset timing...', command=self.launch_stim_onset_cal)
self.bar.calibration_menu.add_command(label='Load gamma table...', command=self.launch_gamma_panel)
self.notify_on_dropped_frames = Tkinter.BooleanVar()
self.notify_on_dropped_frames.set(1)
self.bar.calibration_menu.add_checkbutton(label='Warn on frame skip',
variable=self.notify_on_dropped_frames)
self.override_t_abs_sec = Tkinter.StringVar() # Tkinter DoubleVar loses precision
self.override_t_abs_sec.set("0.0")
self.override_t_abs_on = Tkinter.BooleanVar()
self.override_t_abs_on.set(0)
self.bar.calibration_menu.add_checkbutton(label='Override server absolute time (CAUTION)',
variable=self.override_t_abs_on)
row = 0
# options for self.stim_frame in grid layout manager
self.stim_frame_cnf = {'row':row,
'column':0,
'columnspan':2,
'sticky':'nwes'}
row += 1
Tkinter.Label(self,
text="Sequence information",
font=("Helvetica",12,"bold")).grid(row=row,column=0)
row += 1
# options for self.loop_frame in grid layout manager
self.loop_frame_cnf = {'row':row,
'column':0,
'sticky':'nwes'}
row -= 1
Tkinter.Label(self,
text="Parameter Save Options",
font=("Helvetica",12,"bold")).grid(row=row,column=1)
row += 1
self.auto_save_frame = Tkinter.Frame(self)
asf = self.auto_save_frame # shorthand
asf.grid(row=row,column=1,sticky="nwes")
asf.columnconfigure(1,weight=1)
asf.grid_row = 0
self.autosave = Tkinter.BooleanVar()
self.autosave.set(1)
self.auto_save_button = Tkinter.Checkbutton(asf,
text="Auto save trial parameters",
variable=self.autosave)
self.auto_save_button.grid(row=asf.grid_row,column=0,columnspan=2)
self.param_file_type_tk_var = Tkinter.StringVar()
self.param_file_type_tk_var.set("Python format")
filetype_bar = Tkinter.Menubutton(asf,
textvariable=self.param_file_type_tk_var,
relief=Tkinter.RAISED)
filetype_bar.grid(row=asf.grid_row,column=2)
filetype_bar.menu = Tkinter.Menu(filetype_bar,tearoff=0)
filetype_bar.menu.add_radiobutton(label="Python format",
value="Python format",
variable=self.param_file_type_tk_var)
filetype_bar.menu.add_radiobutton(label="Matlab format",
value="Matlab format",
variable=self.param_file_type_tk_var)
filetype_bar['menu'] = filetype_bar.menu
asf.grid_row += 1
Tkinter.Label(asf,
text="Parameter file directory:").grid(row=asf.grid_row,column=0,sticky="e")
Tkinter.Entry(asf,
textvariable=self.autosave_dir).grid(row=asf.grid_row,column=1,sticky="we")
Tkinter.Button(asf,
text="Set...",command=self.set_autosave_dir).grid(row=asf.grid_row,column=2)
asf.grid_row += 1
Tkinter.Label(asf,
text="Parameter file basename:").grid(row=asf.grid_row,column=0,sticky="e")
Tkinter.Entry(asf,
textvariable=self.autosave_basename).grid(row=asf.grid_row,column=1,sticky="we")
Tkinter.Button(asf,
text="Reset",command=self.reset_autosave_basename).grid(row=asf.grid_row,column=2)
row += 1
Tkinter.Button(self, text='Do single trial', command=self.do_single_trial).grid(row=row,column=0)
Tkinter.Button(self, text='Do sequence', command=self.do_loops).grid(row=row,column=1)
row += 1
self.progress = VisionEgg.GUI.ProgressBar(self,
width=300,
relief="sunken",
doLabel=0,
labelFormat="%s")
self.progress.labelText = "Starting..."
self.progress.updateProgress(0)
self.progress.grid(row=row,column=0,columnspan=2)#,sticky='we')
# Allow rows and columns to expand
for i in range(2):
self.columnconfigure(i,weight=1)
for i in range(row+1):
self.rowconfigure(i,weight=1)
self.switch_to_stimkey( stimkey )
self.config_dir = None
self.demoscript_filename = None
self.vars_list = None
def __del__( self ):
if hasattr(self,'_orig_report_callback_exception'):
self._tk.report_callback_exception = self._orig_report_callback_exception
def switch_to_stimkey( self, stimkey ):
success = 0
for maybe_stimkey, maybe_control_frame, maybe_title in self.client_list:
if stimkey == maybe_stimkey:
control_frame_klass = maybe_control_frame
success = 1
if not success:
raise RuntimeError("Could not find valid client for server stimkey %s"%stimkey)
if hasattr(self, 'stim_frame'):
# clear old frame
self.stim_frame.destroy()
del self.stim_frame
self.stim_frame = control_frame_klass(self,suppress_go_buttons=1)
if stimkey == "dropin_server":
self.stim_frame.gen_var_widgets(self.demoscript_filename, self.vars_list)
self.stim_frame.connect(self.server_hostname,self.server_port)
self.stim_frame.grid( **self.stim_frame_cnf )
global loopable_variables
loopable_variables = self.stim_frame.get_loopable_variable_names()
if hasattr(self, 'loop_frame'):
# clear old frame
self.loop_frame.destroy()
del self.loop_frame
self.loop_frame = ScrollListFrame(master=self,
container_class=LoopContainedObject)
self.loop_frame.grid( **self.loop_frame_cnf )
self.autosave_basename.set( self.stim_frame.get_shortname() )
self.stimulus_tk_var.set( self.stim_frame.get_shortname() ) # set menuitem
self.progress.labelText = "Ready"
self.progress.updateProgress(0)
def change_stimulus(self, dummy_arg=None, new_stimkey=None ):
# if new_stimkey is None, get from the tk variable
if new_stimkey is None:
new_stimkey = self.stimulus_tk_var.get()
found = 0
for maybe_stimkey, maybe_control_frame, maybe_title in self.client_list:
if new_stimkey == maybe_stimkey:
new_control_frame_klass = maybe_control_frame
new_stimkey = maybe_stimkey
found = 1
break
if not found:
raise RuntimeError("Don't know about stimkey %s"%new_stimkey)
if new_control_frame_klass != self.stim_frame.__class__ or new_stimkey == "dropin_server":
# make wait cursor
root = self.winfo_toplevel()
old_cursor = root["cursor"]
root["cursor"] = "watch"
root.update()
try:
self.progress.labelText = "Changing stimulus..."
self.progress.updateProgress(0)
self.ephys_server.set_next_stimkey( new_stimkey )
# new stimulus type
self.stim_frame.quit_server() # disconnect
# in case of loaded Vision Egg script, quit_server()
# sends a signal to stop the "wait" loop, WITHOUT
# raising a flag to run the script
self.ephys_server.get_stimkey() # wait for server to load
self.switch_to_stimkey( new_stimkey)
finally:
#restore cursor
root["cursor"] = old_cursor
root.update()
def save_image_sequence(self):
ImageSequenceLauncher(self,ephys_server=self.ephys_server)
def save_config(self):
self.stim_frame.send_values() # copy values from Tkinter to self.stim_frame.meta_params and send to server
if self.config_dir is not None:
initialdir = self.config_dir
else:
initialdir = VisionEgg.config.VISIONEGG_USER_DIR
filename = tkFileDialog.asksaveasfilename(
parent=self,
defaultextension=".ve_cfg",
filetypes=[('Configuration file','*.ve_cfg')],
initialdir=initialdir)
if not filename:
return
fd = open(filename,"wb")
save_dict = {'stim_type':self.stim_frame.get_shortname(),
'loop_list':self.loop_frame.list,
'stim_frame_dict':self.stim_frame.get_parameters_dict(),
'autosave':self.autosave.get(),
'autosave_dir':self.autosave_dir.get(),
'autosave_basename':self.autosave_basename.get()}
pickle.dump( save_dict, fd )
self.config_dir = os.path.split(filename)[0] # get dir
def load_config(self):
if self.config_dir is not None:
initialdir = self.config_dir
else:
initialdir = VisionEgg.config.VISIONEGG_USER_DIR
filename = tkFileDialog.askopenfilename(
parent=self,
defaultextension=".ve_cfg",
filetypes=[('Configuration file','*.ve_cfg')],
initialdir=initialdir,
)
if not filename:
return
self.config_dir = os.path.split(filename)[0] # get dir
fd = open(filename,"rb")
file_contents = fd.read()
file_contents = file_contents.replace('\r\n','\n') # deal with Windows newlines
memory_file = StringIO.StringIO(file_contents)
load_dict = pickle.load(memory_file)
if load_dict['stim_type'] != self.stim_frame.get_shortname():
self.change_stimulus(new_stimkey=load_dict['stim_type']+"_server")
self.loop_frame.list = load_dict['loop_list']
self.loop_frame.update_now()
self.stim_frame.set_parameters_dict( load_dict['stim_frame_dict'] )
self.autosave.set(load_dict['autosave'])
self.autosave_dir.set(load_dict['autosave_dir'])
self.autosave_basename.set(load_dict['autosave_basename'])
self.stim_frame.update_tk_vars()
def load_params(self,orig_load_dict={}):
filename = tkFileDialog.askopenfilename(
parent=self,
defaultextension=".py",
filetypes=[('Auto-saved parameter file','*.py')])
if not filename:
return
locals = {}
load_dict = orig_load_dict.copy() # make copy of default values
execfile(filename,locals,load_dict) # execute the file
if load_dict['stim_type'] != self.stim_frame.get_shortname():
self.change_stimulus(new_stimkey=load_dict['stim_type']+"_server")
self.loop_frame.list = [] # clear loop list
self.loop_frame.update_now()
new_params = {}
exception_info = []
for param_name in dir(self.stim_frame.meta_params):
if param_name[:2] != "__":
try:
new_params[param_name] = load_dict[param_name]
except Exception, x:
exception_info.append(sys.exc_info()) # don't die on exception
else:
del load_dict[param_name]
for exc_type, exc_value, exc_traceback in exception_info:
# ignore actual traceback
VisionEgg.GUI.showexception(exc_type,exc_value,"")
self.stim_frame.set_parameters_dict( new_params )
self.autosave_basename.set(load_dict['stim_type'])
try:
override_t_abs_sec = load_dict['go_loop_start_time_abs_sec']
except Exception, x:
tkMessageBox.showwarning("No absolute time parameter",
"No absolute time parameter when loading file",
parent=self)
else:
if not self.override_t_abs_on.get():
self.override_t_abs_on.set(1)
tkMessageBox.showwarning("Overriding absolute time parameter",
"Overriding absolute time parameter on server. "+\
"Remember to turn this option off (in Configure "+\
"/ Calibrate menu) when done.",
parent=self)
self.override_t_abs_sec.set(repr(override_t_abs_sec)) # make string
self.stim_frame.update_tk_vars()
return load_dict # return unused variables
def load_demoscript(self):
self.demoscript_filename = tkFileDialog.askopenfilename(
parent=self,
defaultextension=".py",
filetypes=[('Vision Egg Demo Script','*.py')])
if not self.demoscript_filename:
return
else:
# make wait cursor
root = self.winfo_toplevel()
old_cursor = root["cursor"]
root["cursor"] = "watch"
root.update()
try:
fd1 = open(self.demoscript_filename, 'r')
demoscript = ""
# List of all variables.
# Each variable is a tuple of the form [x, y, z] where:
# x: variable type ID,
# y: variable name,
# z: variable value.
self.vars_list = []
lines = fd1.read().splitlines()
keep_lines = []
while len(lines):
myString = lines.pop(0)
if myString.find("get_default_screen()") != -1:
append_flag = 0
elif myString.find("watch_exceptions()") != -1:
append_flag = 0
elif myString.find("start_default_logging()") != -1:
append_flag = 0
elif myString.find("#%f") == 0:
self.vars_list.append([VarTypes.getID("float"), myString.replace("#%f", "").split()[0]])
append_flag = 0
elif myString.find("#%i") == 0:
self.vars_list.append([VarTypes.getID("integer"), myString.replace("#%i", "").split()[0]])
append_flag = 0
elif myString.find("#%s") == 0:
self.vars_list.append([VarTypes.getID("string"), myString.replace("#%s", "").split()[0]])
append_flag = 0
else:
append_flag = 1
if append_flag == 1:
keep_lines.append( myString )
fd1.close()
demoscript = '\n'.join(keep_lines)
# Client side AST. Only used to extract default values
# of elected variables:
try:
AST = parser.suite(demoscript)
for var in self.vars_list:
var_val = AST_ext.extract_from_AST(AST, var[1])
if var[0] == VarTypes.getID("string"):
var_val = var_val[1:len(var_val) - 1]
var.append(var_val)
del AST # save memory
# unfortunately, sending an AST object over a Pyro
# connection has its complications... so we don't
# do it
self.ephys_server.build_AST(demoscript)
self.change_stimulus(new_stimkey="dropin_server")
except (parser.ParserError, SyntaxError):
tkMessageBox.showerror("Error", "Invalid demo script!")
err_fd = file('/home/astraw/tmp/err.py',mode='w')
err_fd.write(demoscript)
finally:
#restore cursor
root["cursor"] = old_cursor
root.update()
def launch_screen_pos(self, dummy_arg=None):
dialog = Tkinter.Toplevel(self)
frame = VisionEgg.PyroApps.ScreenPositionGUI.ScreenPositionControlFrame(dialog,
auto_connect=1,
server_hostname=self.server_hostname,
server_port=self.server_port)
frame.winfo_toplevel().title("3D Calibration - Vision Egg")
frame.pack(expand=1,fill=Tkinter.BOTH)
def launch_stim_onset_cal(self, dummy_arg=None):
dialog = Tkinter.Toplevel(self)
frame = Tkinter.Frame(dialog)
frame.winfo_toplevel().title("Timing Calibration - Vision Egg")
Tkinter.Label(frame,
font=("Helvetica",12,"bold"),
text="Stimulus onset timing").grid(row=0,column=0)
Tkinter.Label(frame,
text="Use a light detector to verify the onset of a trial."
).grid(row=1,column=0)
Tkinter.Checkbutton( frame,
text="Black box (always) with white box (during trial)",
variable=self.stim_onset_cal_tk_var,
command=self.update_stim_onset_cal).grid(row=2,column=0)
x,y,width,height = self.ephys_server.get_stim_onset_cal_location()
location_frame = Tkinter.Frame(frame)
location_frame.grid(row=3,column=0)
self.stim_onset_x = Tkinter.DoubleVar()
self.stim_onset_x.set(x)
self.stim_onset_y = Tkinter.DoubleVar()
self.stim_onset_y.set(y)
self.stim_onset_width = Tkinter.DoubleVar()
self.stim_onset_width.set(width)
self.stim_onset_height = Tkinter.DoubleVar()
self.stim_onset_height.set(height)
Tkinter.Label( location_frame, text="Center X:").grid(row=0,column=0)
Tkinter.Entry( location_frame, textvariable=self.stim_onset_x,width=5).grid(row=0,column=1)
Tkinter.Label( location_frame, text="Center Y:").grid(row=0,column=2)
Tkinter.Entry( location_frame, textvariable=self.stim_onset_y,width=5).grid(row=0,column=3)
Tkinter.Label( location_frame, text="Width:").grid(row=1,column=0)
Tkinter.Entry( location_frame, textvariable=self.stim_onset_width,width=5).grid(row=1,column=1)
Tkinter.Label( location_frame, text="Height:").grid(row=1,column=2)
Tkinter.Entry( location_frame, textvariable=self.stim_onset_height,width=5).grid(row=1,column=3)
Tkinter.Button( frame,
text="update position and size",
command=self.set_stim_onset_cal_position).grid(row=4,column=0)
self.set_stim_onset_cal_position() # call it once to send server our initial values
frame.pack(expand=1,fill=Tkinter.BOTH)
def launch_gamma_panel(self, dummy_arg=None):
dialog = Tkinter.Toplevel(self)
frame = GammaFrame(dialog,
self.ephys_server)
frame.pack(expand=1,fill=Tkinter.BOTH)
def set_autosave_dir(self):
self.autosave_dir.set( os.path.abspath( tkFileDialog.askdirectory() ) )
def reset_autosave_basename(self):
self.autosave_basename.set( self.stim_frame.get_shortname() )
def update_stim_onset_cal(self, dummy_arg=None):
on = self.stim_onset_cal_tk_var.get()
self.ephys_server.set_stim_onset_cal(on)
def set_stim_onset_cal_position(self, dummy_arg=None):
x = self.stim_onset_x.get()
y = self.stim_onset_y.get()
width = self.stim_onset_width.get()
height = self.stim_onset_height.get()
self.ephys_server.set_stim_onset_cal_location(center=(x,y),size=(width,height))
def do_loops(self):
super_loop_list = self.loop_frame.get_list_uncontained()
# "super_loop_list" is a list of lists, each of which, a
# "loop_list", contains "loop" class objects
# eg. [[a], [b, c], [d]]
# Need to test that "get_list_uncontained()" is returning a list of lists!
global need_rest_period
need_rest_period = 0
if not len(super_loop_list):
return
############################################################
def process_loops(depth): # recursive processing of loops
class LoopInfoFrame(Tkinter.Frame):
def __init__(self, master=None, **kw):
Tkinter.Frame.__init__(self,master,**kw)
Tkinter.Label(self,
text="Doing sequence").grid(row=0,column=0)
self.status_tk_var = Tkinter.StringVar()
Tkinter.Label(self,
textvariable = self.status_tk_var).grid(row=1, column=0)
self.cancel_asap = 0
Tkinter.Button(self,
text="Cancel",command=self.cancel).grid(row=2,column=0)
self.focus_set()
self.grab_set()
def cancel(self, dummy_arg=None):
self.cancel_asap = 1
global need_rest_period
global loop_info_frame
if depth == 0: # only make one LoopInfoFrame (when depth is 0, ie. first time)
top = Tkinter.Toplevel(self)
loop_info_frame = LoopInfoFrame(top)
loop_info_frame.pack()
loop_list = super_loop_list[depth]
#print "current depth"
#print depth
#print "Loop?"
#print loop
max_depth = len(super_loop_list)-1
#print "max_depth"
#print max_depth
loop = loop_list[0].get_contained()
# "loop_list" is, for example: [a, b, c]
# ie. each element is an object of class "loop".
# If one element is done, then all other elements are effectively done, the way we've structured the lists to
# be (they all have same 'N' value).
while not loop.is_done() and not loop_info_frame.cancel_asap:
for loop_element in loop_list:
if loop_element.get_contained().parameters.variable != "<repeat>":
self.stim_frame.set_loopable_variable(loop_element.get_contained().parameters.variable,loop_element.get_contained().get_current())
if depth < max_depth:
process_loops(depth+1)
elif depth == max_depth: # deepest level -- do the trial
if need_rest_period:
self.progress.labelText = "Resting"
self.sleep_with_progress(loop.parameters.rest_duration_sec)
self.do_single_trial()
need_rest_period = 1
else:
raise RuntimeError("Called with max_depth==-1:")
for loop_element in loop_list:
loop_element.get_contained().advance()
for loop_element in loop_list:
loop_element.get_contained().reset()
if depth == 0: # destroy LoopInfoFrame
top.destroy()
############################################################
process_loops(0) # start recursion on top level
def do_single_trial(self):
# Get filename to save parameters
if not self.autosave.get():
file_stream = None # not saving file
else:
duration_sec = self.stim_frame.get_duration_sec()
(year,month,day,hour24,min,sec) = time.localtime(time.time()+duration_sec)[:6]
trial_time_str = "%04d%02d%02d_%02d%02d%02d"%(year,month,day,hour24,min,sec)
if self.param_file_type_tk_var.get() == "Python format":
# Figure out filename to save parameters in
filename = self.autosave_basename.get() + trial_time_str + "_params.py"
fullpath_filename = os.path.join( self.autosave_dir.get(), filename)
file_stream = open(fullpath_filename,"w")
elif self.param_file_type_tk_var.get() == "Matlab format":
# Figure out filename to save results in
filename = self.autosave_basename.get() + trial_time_str + "_params.m"
fullpath_filename = os.path.join( self.autosave_dir.get(), filename)
file_stream = open(fullpath_filename,"w")
else:
raise ValueError('Unknown file format: "%s"'%(self.param_file_type_tk_var.get(),))
# this class is broken into parts so it can be subclassed more easily
self.do_single_trial_pre(file_stream)
self.do_single_trial_work()
self.do_single_trial_post(file_stream)
# Close parameter save file
if self.autosave.get():
file_stream.close()
def do_single_trial_pre(self, file_stream):
# Ensure that we have the most up-to-date values
self.stim_frame.send_values() # copy values from Tkinter to self.stim_frame.meta_params and send to server
# if file_stream is None, open default file
if self.autosave.get():
duration_sec = self.stim_frame.get_duration_sec()
(year,month,day,hour24,min,sec) = time.localtime(time.time()+duration_sec)[:6]
if self.param_file_type_tk_var.get() == "Python format":
file_stream.write("stim_type = '%s'\n"%self.stim_frame.get_shortname())
file_stream.write("finished_time = %04d%02d%02d%02d%02d%02d\n"%(year,month,day,hour24,min,sec))
parameter_list = self.stim_frame.get_parameters_as_py_strings()
for parameter_name, parameter_value in parameter_list:
file_stream.write("%s = %s\n"%(parameter_name, parameter_value))
elif self.param_file_type_tk_var.get() == "Matlab format":
file_stream.write("stim_type = '%s';\n"%self.stim_frame.get_shortname())
file_stream.write("finished_time = %04d%02d%02d%02d%02d%02d;\n"%(year,month,day,hour24,min,sec))
parameter_list = self.stim_frame.get_parameters_as_m_strings()
for parameter_name, parameter_value in parameter_list:
file_stream.write("%s = %s;\n"%(parameter_name, parameter_value))
else:
raise RuntimeError("Unknown parameter file type") # Should never get here
def do_single_trial_work(self):
# make wait cursor
root = self.winfo_toplevel()
self.old_cursor = root["cursor"]
root["cursor"] = "watch"
root.update()
try:
self.progress.labelText = "Doing trial..."
self.progress.updateProgress(0)
duration_sec = self.stim_frame.get_duration_sec()
if duration_sec > 0:
if self.override_t_abs_on.get():
new_t_abs_str = self.override_t_abs_sec.get()
self.ephys_server.set_override_t_abs_sec( new_t_abs_str )
self.stim_frame.go() # start server going, but this return control immediately
self.sleep_with_progress(duration_sec)
while self.ephys_server.is_in_go_loop(): # make sure go loop is really done
time.sleep(0.1) # wait 100 msec for end of go loop and try again
if self.notify_on_dropped_frames.get():
if self.ephys_server.were_frames_dropped_in_last_go_loop():
tkMessageBox.showwarning("Dropped frame(s)",
"During the last trial, at least 1 frame was dropped.",
parent=self)
else:
if self.stim_frame.send_values():
self.ephys_server.run_demoscript()
self.stim_frame.quit_server()
finally:
root["cursor"] = self.old_cursor
root.update()
# restore status bar
self.progress.labelText = "Ready"
self.progress.updateProgress(0)
def do_single_trial_post(self, file_stream):
# if file_stream is None, open default file
if self.autosave.get():
frames_dropped = self.ephys_server.were_frames_dropped_in_last_go_loop()
go_loop_start_time = self.ephys_server.get_last_go_loop_start_time_absolute_sec()
if self.param_file_type_tk_var.get() == "Python format":
file_stream.write("frames_dropped = %s # boolean\n"%str(frames_dropped))
file_stream.write("go_loop_start_time_abs_sec = %s\n"%repr(go_loop_start_time))
elif self.param_file_type_tk_var.get() == "Matlab format":
file_stream.write("frames_dropped = %s; %% boolean\n"%str(frames_dropped))
file_stream.write("go_loop_start_time_abs_sec = %s;\n"%repr(go_loop_start_time))
else:
raise RuntimeError("Unknown parameter file type") # Should never get here
def sleep_with_progress(self, duration_sec):
if duration_sec == 0.0:
return # don't do anything
start_time = time.time()
stop_time = start_time + duration_sec
percent_done = 0
while percent_done < 100:
if sys.platform != 'darwin': # Mac OS X Tk bug... sigh...
self.progress.updateProgress(percent_done)
time.sleep(0.01) # wait 10 msec
percent_done = (time.time() - start_time)/duration_sec*100
def quit(self):
if self.quit_server_too.get():
self.ephys_server.set_quit_status(1)
# call parent class
Tkinter.Frame.quit(self)
def destroy(self):
try:
if self.quit_server_too.get():
self.ephys_server.set_quit_status(1)
except:
pass
Tkinter.Frame.destroy(self)
class BarButton(Tkinter.Menubutton):
# Taken from Guido van Rossum's Tkinter svkill demo
def __init__(self, master=None, **cnf):
Tkinter.Menubutton.__init__(self, master, **cnf)
self.pack(side=Tkinter.LEFT)
self.menu = Tkinter.Menu(self, name='menu', tearoff=0)
self['menu'] = self.menu
if __name__ == '__main__':
hostname = os.getenv("ephys_server_hostname","")
port = int(os.getenv("ephys_server_port","7766"))
result = get_server(hostname=hostname,port=port)
if result:
hostname,port = result
app_window = AppWindow(client_list=client_list,
server_hostname=hostname,
server_port=port)
app_window.winfo_toplevel().wm_iconbitmap()
app_window.pack(expand=1,fill=Tkinter.BOTH)
app_window.mainloop()
|