/usr/lib/python2.7/dist-packages/pymol/movie.py is in pymol 1.7.2.1-2.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 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 | #A* -------------------------------------------------------------------
#B* This file contains source code for the PyMOL computer program
#C* Copyright (c) Schrodinger, LLC.
#D* -------------------------------------------------------------------
#E* It is unlawful to modify or remove this copyright notice.
#F* -------------------------------------------------------------------
#G* Please see the accompanying LICENSE file for further information.
#H* -------------------------------------------------------------------
#I* Additional authors of this source file include:
#-* Peter Haebel, Byron DeLaBarre
#-*
#-*
#Z* -------------------------------------------------------------------
import cmd
import glob
import math
import string
import os
import glob
import threading
import time
def sweep(pause=0,cycles=1,_self=cmd):
pause = int(pause)
cycles = int(cycles)
n_state = _self.count_states("all")
if pause>0:
pass_string = "1 x%d 1 -%d %d x%d %d -1"%(pause, n_state, n_state, pause, n_state)
else:
pass_string = "1 -%d %d -1"%(n_state, n_state)
movie_list = [ pass_string ] * cycles
movie_string = string.join(movie_list," ")
_self.mset(movie_string)
def pause(pause=15,cycles=1,_self=cmd):
pause = int(pause)
cycles = int(cycles)
n_state = _self.count_states("all")
if pause>0:
pass_string = "1 x%d 1 -%d %d x%d"%(pause, n_state, n_state, pause)
else:
pass_string = "1 -%d %d -1"%(n_state, n_state)
movie_list = [ pass_string ] * cycles
movie_string = string.join(movie_list," ")
_self.mset(movie_string)
def load(*args,**kw):
_self = kw.get('_self',cmd)
nam = "mov"
if len(args)>1:
nam = args[1]
fils = glob.glob(args[0])
fils.sort()
if not len(fils):
print "Error: no matching files"
else:
for a in fils:
apply(_self.load,(a,nam),kw)
# _self.load(a,nam)
def rock(first=1,last=-1,angle=30,phase=0,loop=1,axis='y',_self=cmd):
first=int(first)
last=int(last)
if last<0:
last = _self.count_frames()
angle=float(angle)
phase=float(phase)
loop=int(loop)
nstep = (last-first)+1
if nstep<0:
nstep = 1
if loop:
subdiv = nstep
else:
subdiv = nstep+1
ang_cur = math.pi*phase/180
ang_inc = 2*math.pi/subdiv
ang_cur = ang_cur - ang_inc
a = 0
while a<nstep:
last = angle*math.sin(ang_cur)/2
ang_cur = ang_cur + ang_inc
disp = angle*math.sin(ang_cur)/2
diff = disp-last
# com = "mdo %d:turn %s,%8.3f" % (first+a,axis,diff)
# _self.do(com)
_self.mdo("%d"%(first+a),"turn %s,%8.3f"% (axis,diff))
a = a + 1
def roll(first=1,last=-1,loop=1,axis='y',_self=cmd):
first=int(first)
last=int(last)
loop=int(loop)
axis=str(axis)
if last<0:
last = _self.count_frames()
n = last - first
if loop:
step = 2*math.pi/(n+1)
else:
step = 2*math.pi/n
a = 0
invert = 1
if axis[0:1]=='-':
axis=axis[1:]
invert = -1
deg = invert * (180*step/math.pi)
while a<=n:
# com = "mdo %d:turn %s,%8.3f" % (first+a,axis,deg)
# _self.do(com)
_self.mdo("%d" % (first+a), "turn %s,%8.3f" % (axis,deg))
a = a + 1
def tdroll(first,rangex,rangey,rangez,skip=1,_self=cmd):
'''
AUTHOR
Byron DeLaBarre
USAGE
movie.tdroll(rangx,rangey,rangez,skip=1,mset=0)
rangex/y/z = rotation range on respective axis
enter 0 for no rotation.
skip is angle increment in each frame
Use skip to reduce final movie size or to speed up rotation.
EXAMPLE
movie.tdroll 360,360,360,5
'''
first = int(first)
rangex = float(rangex)
rangey = float(rangey)
rangez = float(rangez)
skip = int(skip)
axis=['x','y','z']
rangel=[rangex,rangey,rangez]
axpos=0
frpos=1
for ax in axis:
range = int(rangel[axpos])
if range:
leftover = divmod(range,skip)
print leftover[1]
if leftover[1]:
range = range + int(leftover[1])
a = 0
while a<range:
_self.mdo("%d" % (first+frpos-1), "turn %s,%8.3f" % (ax,skip))
a = a + skip
frpos = frpos + 1
axpos = axpos + 1
else:
axpos = axpos + 1
print (" tdroll: defined rotations for", frpos - 1,
"frames, starting at frame %d"%first)
def zoom(first,last,step=1,loop=1,axis='z',_self=cmd):
# Author: Peter Haebel
first=int(first)
last=int(last)
step=int(step)
loop=int(loop)
n = last - first
a = 0
while a<=n:
if (loop and a>n/2):
s = -step
else:
s = step
# com = "mdo %d:move %s,%8.3f" % (first+a,axis,s)
# _self.do(com)
_self.mdo("%d" % (first+a),"move %s,%8.3f" % (axis,s))
a = a + 1
def nutate(first,last,angle=30,phase=0,loop=1,shift=math.pi/2.0,_self=cmd):
first=int(first)
last=int(last)
angle=float(angle)
phase=float(phase)
loop=int(loop)
nstep = (last-first)+1
if nstep<0:
nstep = 1
if loop:
subdiv = nstep
else:
subdiv = nstep+1
ang_cur = math.pi*phase/180
ang_inc = 2*math.pi/subdiv
ang_cur = ang_cur - ang_inc
a = 0
while a<nstep:
lastx = angle*math.sin(ang_cur)/2
lasty = angle*math.sin(ang_cur+shift)/2
ang_cur = ang_cur + ang_inc
nextx = angle*math.sin(ang_cur)/2
nexty = angle*math.sin(ang_cur+shift)/2
# com = "mdo %d:turn %s,%8.3f" % (first+a,axis,diff)
# _self.do(com)
_self.mdo("%d"%(first+a),"turn x,%8.3f;turn y,%8.3f;turn y,%8.3f;turn x,%8.3f"%
(-lastx,-lasty,nexty,nextx))
a = a + 1
def screw(first,last,step=1,angle=30,phase=0,loop=1,axis='y',_self=cmd):
# Author: Peter Haebel
first=int(first)
last=int(last)
step=int(step)
angle=float(angle)
phase=float(phase)
loop=int(loop)
nstep = (last-first)+1
if nstep<0:
nstep = 1
if loop:
subdiv = nstep
else:
subdiv = nstep+1
ang_cur = math.pi*phase/180
ang_inc = 2*math.pi/subdiv
ang_cur = ang_cur - ang_inc
a = 0
while a<nstep:
if (loop and a>=nstep/2):
s = -step
else:
s = step
last = angle*math.sin(ang_cur)/2
ang_cur = ang_cur + ang_inc
disp = angle*math.sin(ang_cur)/2
diff = disp-last
# com = "mdo %d:turn %s,%8.3f; move z,%8.3f" % (first+a,axis,diff,s)
# _self.do(com)
_self.mdo("%d" % (first+a), "turn %s,%8.3f; move z,%8.3f" % (axis,diff,s))
a = a + 1
def timed_roll(period=12.0,cycles=1,axis='y',_self=cmd):
frames_per_sec = float(_self.get('movie_fps'))
if frames_per_sec<1.0:
frames_per_sec=30.0
frames_per_cycle = int(period*frames_per_sec)
total = frames_per_cycle * cycles
_self.mset("1 x%d"%total)
step = 2*math.pi/(frames_per_cycle)
deg = (180*step/math.pi)
_self.mview('reset')
_self.rewind()
frame = 1
for cycle in range(cycles):
for cnt in range(frames_per_cycle):
_self.turn(axis,deg)
_self.mview('store',frame,freeze=1)
frame = frame + 1
# blank frames to be specified by the user
def add_blank(duration=12.0,start=0,_self=cmd):
cmd = _self
if not start:
start = cmd.get_movie_length()+1
duration = float(duration)
fps = float(cmd.get('movie_fps'))
n_frame = int(round(fps * duration))
if n_frame > 0:
cmd.mset("1 x%d"%n_frame,start)
cmd.frame(start)
# new matrix-based camera interpolation routines
def add_roll(duration=12.0,loop=1,axis='y',start=0,_self=cmd):
cmd = _self
if not start:
start = cmd.get_movie_length()+1
duration = float(duration)
fps = float(cmd.get('movie_fps'))
n_frame = int(round(fps * duration))
if n_frame > 0:
cmd.mset("1 x%d"%n_frame,start,freeze=1)
cmd.mview("store",start,power=1,freeze=1)
cmd.turn(axis,120)
cmd.mview("store",start+n_frame/3,power=1,freeze=1)
cmd.turn(axis,120)
cmd.mview("store",start+(2*n_frame)/3,power=1,freeze=1)
if loop:
if (start == 1):
cmd.mview("interpolate",wrap=1)
cmd.turn(axis,120)
cmd.mview("store",start+n_frame-1,power=1,freeze=1)
cmd.turn(axis,120)
else:
adjustment = 360.0/n_frame
cmd.turn(axis,120 - adjustment)
cmd.mview("store",start+n_frame-1,power=1,freeze=1)
cmd.mview("interpolate")
cmd.turn(axis,adjustment)
else:
cmd.turn(axis,120)
cmd.mview("store",start+n_frame-1,power=1,freeze=1)
cmd.mview("interpolate")
cmd.frame(start)
def add_rock(duration=8.0,angle=30.0,loop=1,axis='y',start=0,_self=cmd):
cmd = _self
if not start:
start = cmd.get_movie_length()+1
duration = float(duration)
angle=float(angle)
loop=int(loop)
fps = float(cmd.get('movie_fps'))
n_frame = int(round(fps * duration))
if n_frame > 0:
cmd.mset("1 x%d"%n_frame,start,freeze=1)
cmd.turn(axis,angle/2.0)
cmd.mview("store",start+n_frame/4,power=-1,freeze=1)
cmd.turn(axis,-angle)
cmd.mview("store",start+(3*n_frame)/4,power=-1,freeze=1)
if loop and (start == 1):
cmd.mview("interpolate",wrap=1)
else:
cmd.mview("interpolate")
cmd.frame(start)
def add_state_sweep(factor=1,pause=2.0,first=-1,last=-1,loop=1,start=0,_self=cmd):
cmd = _self
if not start:
start = cmd.get_movie_length() + 1
loop = int(loop)
fps = float(cmd.get('movie_fps'))
n_state = cmd.count_states()
duration = (2 * pause) + (2 * factor * n_state) / fps
n_frame = int(round(fps * duration))
if n_frame > 0:
cmd.mset("1 x%d"%n_frame, start, freeze=1)
cmd.mview("store",start, state=1, freeze=1)
cmd.mview("store",start + (n_frame * pause) / duration, state=1, freeze=1)
cmd.mview("store",start + n_state * factor + (n_frame * pause) / duration - 1, state=n_state, freeze=1)
cmd.mview("store",start + n_state * factor + (2 * n_frame * pause) / duration, state=n_state, freeze=1)
cmd.mview("store",start + n_frame-1, state=1, freeze=1)
if loop and (start == 1):
cmd.mview("interpolate",wrap=1)
else:
cmd.mview("interpolate")
cmd.frame(start)
def add_state_loop(factor=1,pause=2.0,first=-1,last=-1,loop=1,start=0,_self=cmd):
cmd = _self
if not start:
start = cmd.get_movie_length() + 1
loop = int(loop)
fps = float(cmd.get('movie_fps'))
n_state = cmd.count_states()
duration = (pause) + (factor * n_state) / fps
n_frame = int(round(fps * duration))
if n_frame > 0:
cmd.mset("1 x%d"%n_frame, start, freeze=1)
cmd.mview("store",start, state=1, freeze=1)
cmd.mview("store",start + (n_frame * pause * 0.5) / duration, state=1, freeze=1)
cmd.mview("store",start + n_state * factor + (n_frame * pause * 0.5) / duration, state=n_state, freeze=1)
cmd.mview("store",start + n_frame-1, state=n_state, freeze=1)
if loop and (start == 1):
cmd.mview("interpolate",wrap=1)
else:
cmd.mview("interpolate")
cmd.frame(start)
def add_nutate(duration=8.0, angle=30.0, spiral=0, loop=1,
offset=0, phase=0, shift=math.pi/2.0, start=0,
_self=cmd):
cmd = _self
if not start:
start = cmd.get_movie_length()+1
duration = float(duration)
angle = float(angle)
spiral = int(spiral)
loop = int(loop)
fps = float(cmd.get('movie_fps'))
n_frame = int(round(fps * duration))
if n_frame > 0:
cmd.mset("1 x%d"%n_frame,start,freeze=1)
for index in range(0,n_frame):
if spiral>0:
sp_angle = angle*float(index+1)/n_frame
elif spiral<0:
sp_angle = angle*(1.0 - float(index+1)/n_frame)
else:
sp_angle = angle
ang_cur = math.pi*phase/180.0 + (2*math.pi*index)/n_frame
x_rot = sp_angle * math.sin(ang_cur)/2
y_rot = sp_angle * math.sin(ang_cur+shift)/2
cmd.turn('x',x_rot)
cmd.turn('y',y_rot)
cmd.mview('store',start+index,freeze=1)
cmd.turn('y',-y_rot)
cmd.turn('x',-x_rot)
def _rock(mode,axis,first,last,period,pause,_self=cmd):
cmd = _self
n_frame = last - first + 1
angle = cmd.get_setting_float('sweep_angle')
if (period * 1.5) < pause:
n_cyc = int(round(pause / period))
frame_list = []
for cyc in range(n_cyc):
frame_list.extend( [(first + ((1+4*cyc)*n_frame)/(4*n_cyc)),
(first + ((3+4*cyc)*n_frame)/(4*n_cyc))] )
else:
frame_list = [ first+n_frame/4, first+(3*n_frame)/4 ]
if 1 or mode:
direction = 0
for frame in frame_list:
if not direction:
cmd.turn(axis,angle/2.0)
cmd.mview("store",frame,power=-1,freeze=1)
direction = -1
else:
cmd.turn(axis, direction * angle)
cmd.mview("store",frame,power=-1,freeze=1)
direction = -direction
cmd.turn(axis,direction * angle/2.0)
cmd.mview("store",last,power=-1,freeze=1)
cmd.mview("interpolate",first,last)
def _nutate_sub(start_frame, stop_frame, angle=15.0, spiral=0, loop=1,
offset=0, phase=0, shift=math.pi/2.0, _self=cmd):
cmd = _self
angle = float(angle)
spiral = int(spiral)
loop = int(loop)
fps = float(cmd.get('movie_fps'))
duration = (stop_frame - start_frame)/fps
n_frame = int(round(fps * duration))
if n_frame > 0:
for index in range(0,n_frame):
if spiral>0:
sp_angle = angle*float(index+1)/n_frame
elif spiral<0:
sp_angle = angle*(1.0 - float(index+1)/n_frame)
else:
sp_angle = angle
ang_cur = math.pi*phase/180.0 + (2*math.pi*index)/n_frame
x_rot = sp_angle * math.sin(ang_cur)/2
y_rot = sp_angle * math.sin(ang_cur+shift)/2
cmd.turn('x',x_rot)
cmd.turn('y',y_rot)
cmd.mview('store',start_frame+index,freeze=1)
cmd.turn('y',-y_rot)
cmd.turn('x',-x_rot)
def _nutate(mode,first,last,period,pause,_self=cmd):
cmd = _self
n_frame = last - first + 1
axis = 'y'
angle = cmd.get_setting_float('sweep_angle')
if (period * 1.5) < pause:
n_cyc = int(round(pause / period))
frame_list = []
for cyc in range(n_cyc):
frame_list.append( [(first + ((cyc)*n_frame)/(n_cyc)),
(first + ((cyc+1)*n_frame)/(n_cyc))] )
else:
frame_list = [ [first, first+n_frame] ]
direction = 0
spiral = 1
for frame in frame_list:
_nutate_sub(frame[0], frame[1], angle, spiral, _self=cmd)
spiral = 0
def add_scenes(names=None, pause=8.0, cut=0.0, loop=1,
rock=-1, period=8.0, animate=-1, start=0,
_self=cmd):
cmd = _self
if not start:
start = cmd.get_movie_length()+1
animate = float(animate)
pause = float(pause)
period = float(period)
if period>pause:
period = pause
rock = int(rock)
if animate<0:
animate = float(cmd.get("scene_animation_duration"))
if names == None:
names = cmd.get_scene_list()
elif cmd.is_str(names):
names = cmd.safe_alpha_list_eval(names)
n_scene = len(names)
duration = n_scene*(pause+animate)
fps = float(cmd.get('movie_fps'))
n_frame = int(round(fps * duration))
if not loop:
act_n_frame = int(round(fps * (duration - animate)))
else:
act_n_frame = n_frame
if rock<0:
sweep_mode = int(cmd.get('sweep_mode'))
elif rock:
sweep_mode = rock - 1
else:
sweep_mode = 0
if n_frame > 0:
cmd.mset("1 x%d"%act_n_frame,start,freeze=1)
cnt = 0
for scene in names:
frame = start+int((cnt*n_frame)/n_scene)
cmd.mview("store",frame,scene=scene,freeze=1)
if rock:
cmd.mview("interpolate",cut=cut,wrap=0)
sweep_first = frame + 1
sweep_last = start + int(pause*fps+(cnt*n_frame)/n_scene) - 1
if sweep_last > act_n_frame:
sweep_last = act_n_frame
n_sweep_frame = sweep_last - sweep_first + 1
if n_sweep_frame > 0:
if sweep_mode==1: # x-axis rock
_rock(sweep_mode, 'x', sweep_first, sweep_last,
period, pause, _self=_self)
elif sweep_mode<3: # y-axis rock
_rock(sweep_mode, 'y', sweep_first, sweep_last,
period, pause, _self=_self)
elif sweep_mode == 3:
_nutate(sweep_mode, sweep_first, sweep_last,
period, pause, _self=_self)
frame = start+int(pause*fps+(cnt*n_frame)/n_scene)
if frame <= act_n_frame:
if sweep_mode!=3:
cmd.mview("store",frame,scene=scene,freeze=1)
cnt = cnt + 1
cmd.mview("interpolate",cut=cut,wrap=loop)
if rock:
cmd.mview("smooth")
cmd.frame(start)
_prefix = "mov"
def _watch(filename,done_event):
tries = 5
size = 0
import time,os
while not os.path.exists(filename):
if done_event.isSet():
break
tries = tries - 1
if tries < 0:
break
time.sleep(1)
if os.path.exists(filename):
tries = 5
while os.path.exists(filename):
stat = os.stat(filename)
if size != stat[6]:
tries = 5
size = stat[6]
if done_event.isSet():
break
print " produce: %d bytes written..."%size
else:
tries = tries - 1
if tries < 0:
break
time.sleep(2)
if done_event.isSet():
break
def _encode(filename,mode,first,last,preserve,
encoder,tmp_path,prefix,quality,quiet,_self=cmd):
import os
tries = 10
while 1: # loop until all of the files have been created...
done = 1
# check for the required output files
for index in range(first,last+1):
path = os.path.join(tmp_path,prefix+"%04d.ppm"%index)
if not os.path.exists(path):
done = 0
break;
if done:
break
elif _self.get_modal_draw(): # keep looping so long as we're rendering...
tries = 10
else:
tries = tries - 1
if tries < 0:
done = 0
break
time.sleep(0.25)
_self.sync()
ok = 1
if done and ok and (encoder == 'mpeg_encode'):
try:
from freemol import mpeg_encode
except:
ok = 0
print "produce-error: Unable to import module freemol.mpeg_encode."
if ok:
if not mpeg_encode.validate():
ok = 0
print "produce-error: Unable to validate freemol.mpeg_encode."
if not ok:
print "produce-error: Unable to create mpeg file."
else:
mpeg_quality = 1+int(((100-quality)*29)/100) # 1 to 30
input = mpeg_encode.input(filename,tmp_path,
prefix,first,last,mpeg_quality);
if not quiet:
print " produce: creating '%s' (in background)..."%(filename)
done_event = None
if not quiet:
done_event = threading.Event()
t = threading.Thread(target=_watch,
args=(filename,done_event))
t.setDaemon(1)
t.start()
try:
result = mpeg_encode.run(input)
finally:
if done_event != None:
done_event.set()
if not quiet:
if not os.path.exists(filename):
if result != None:
print input, result[0], result[1]
print " produce: compression failed"
else:
print " produce: finished."
_self.unset("keep_alive")
if preserve<1:
if os.path.isdir(tmp_path):
for fil in glob.glob(os.path.join(tmp_path,prefix+"*")):
os.unlink(fil)
os.rmdir(tmp_path)
produce_mode_dict = {
'normal' : 0,
'draw' : 1,
'ray' : 2,
}
produce_mode_sc = cmd.Shortcut(produce_mode_dict.keys())
def produce(filename, mode='', first=0, last=0, preserve=0,
encoder='mpeg_encode', quality=60, quiet=1, _self=cmd):
prefix = _prefix
if _self.is_string(mode):
if mode == '':
if int(cmd.get_setting_legacy('ray_trace_frames')):
mode = 'ray'
elif cmd._pymol.invocation.options.no_gui:
mode = 'ray'
else:
mode = 'draw'
mode = produce_mode_sc.auto_err(mode,"mode")
mode = produce_mode_dict[mode]
else:
mode = int(mode)
first = int(first)
last = int(last)
quiet = int(quiet)
preserve = int(preserve)
quality = int(quality)
if quality<0:
quality = 0
if quality>100:
quality = 100
ok = 1
splitext = os.path.splitext(filename)
tmp_path = splitext[0]+".tmp"
if splitext[1]=='':
splitext=(splitext[0],'.mpg')
filename = splitext[0]+splitext[1]
if os.path.exists(filename):
os.unlink(filename)
if not os.path.exists(tmp_path):
os.mkdir(tmp_path)
elif preserve==0:
# get rid of existing frames (if they exist)
for fil in glob.glob(os.path.join(tmp_path,prefix+"*")):
os.unlink(fil)
if preserve<0:
preserve = 0
if os.path.isdir(tmp_path):
if first <= 0:
first = 1
if last <= 0:
last = _self.count_frames()
if last <= 1:
last = 1
_self.set("keep_alive")
_self.mpng(os.path.join(tmp_path,prefix+".ppm"),first,last,
preserve,mode=mode,modal=1,quiet=quiet)
# this may run asynchronously
else:
ok = 0
if ok:
t = threading.Thread(target=_encode,
args=(filename,mode,first,last,preserve,
encoder,tmp_path,prefix,quality,quiet,_self))
t.setDaemon(1)
t.start()
if ok:
return _self.DEFAULT_SUCCESS
else:
return _self.DEFAULT_ERROR
|