Merging ofdm2 branch -r7047:7321 into trunk. This updates the OFDM code to hier_block...
[debian/gnuradio] / gnuradio-core / src / utils / gr_plot_int.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2007 Free Software Foundation, Inc.
4
5 # This file is part of GNU Radio
6
7 # GNU Radio is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3, or (at your option)
10 # any later version.
11
12 # GNU Radio is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Radio; see the file COPYING.  If not, write to
19 # the Free Software Foundation, Inc., 51 Franklin Street,
20 # Boston, MA 02110-1301, USA.
21
22
23 import scipy
24 from pylab import *
25 from optparse import OptionParser
26
27 matplotlib.interactive(True)
28 matplotlib.use('TkAgg')
29
30 class draw_fft_c:
31     def __init__(self, filename, options):
32         self.hfile = open(filename, "r")
33         self.block_length = options.block
34         self.start = options.start
35         self.sample_rate = options.sample_rate
36
37         self.axis_font_size = 16
38         self.label_font_size = 18
39         self.title_font_size = 20
40         self.text_size = 22
41
42         # Setup PLOT
43         self.fig = figure(1, figsize=(16, 9), facecolor='w')
44         rcParams['xtick.labelsize'] = self.axis_font_size
45         rcParams['ytick.labelsize'] = self.axis_font_size
46         
47         self.text_file     = figtext(0.10, 0.94, ("File: %s" % filename), weight="heavy", size=self.text_size)
48         self.text_file_pos = figtext(0.10, 0.88, "File Position: ", weight="heavy", size=self.text_size)
49         self.text_block    = figtext(0.40, 0.88, ("Block Size: %d" % self.block_length),
50                                      weight="heavy", size=self.text_size)
51         self.text_sr       = figtext(0.60, 0.88, ("Sample Rate: %.2f" % self.sample_rate),
52                                      weight="heavy", size=self.text_size)
53         self.make_plots()
54
55         self.button_left_axes = self.fig.add_axes([0.45, 0.01, 0.05, 0.05], frameon=True)
56         self.button_left = Button(self.button_left_axes, "<")
57         self.button_left_callback = self.button_left.on_clicked(self.button_left_click)
58
59         self.button_right_axes = self.fig.add_axes([0.50, 0.01, 0.05, 0.05], frameon=True)
60         self.button_right = Button(self.button_right_axes, ">")
61         self.button_right_callback = self.button_right.on_clicked(self.button_right_click)
62
63         self.xlim = self.sp_f.get_xlim()
64
65         self.manager = get_current_fig_manager()
66         connect('key_press_event', self.click)
67         show()
68         
69     def get_data(self):
70         self.text_file_pos.set_text("File Position: %d" % (self.hfile.tell()//4))
71         f = scipy.fromfile(self.hfile, dtype=scipy.int32, count=self.block_length)
72         #print "Read in %d items" % len(self.f)
73         if(len(f) == 0):
74             print "End of File"
75         else:
76             self.f = f
77             self.time = [i*(1/self.sample_rate) for i in range(len(self.f))]
78         
79     def make_plots(self):
80         # if specified on the command-line, set file pointer
81         self.hfile.seek(8*self.start, 1)
82
83         self.get_data()
84         
85         # Subplot for real and imaginary parts of signal
86         self.sp_f = self.fig.add_subplot(2,1,1, position=[0.075, 0.2, 0.875, 0.6])
87         self.sp_f.set_title(("Amplitude"), fontsize=self.title_font_size, fontweight="bold")
88         self.sp_f.set_xlabel("Time (s)", fontsize=self.label_font_size, fontweight="bold")
89         self.sp_f.set_ylabel("Amplitude (V)", fontsize=self.label_font_size, fontweight="bold")
90         self.plot_f = plot(self.time, self.f, 'bo-')
91         self.sp_f.set_ylim([1.5*min(self.f),
92                             1.5*max(self.f)])
93
94         draw()
95
96     def update_plots(self):
97         self.plot_f[0].set_data([self.time, self.f])
98         self.sp_f.set_ylim([1.5*min(self.f),
99                             1.5*max(self.f)])
100         draw()
101         
102     def click(self, event):
103         forward_valid_keys = [" ", "down", "right"]
104         backward_valid_keys = ["up", "left"]
105
106         if(find(event.key, forward_valid_keys)):
107             self.step_forward()
108             
109         elif(find(event.key, backward_valid_keys)):
110             self.step_backward()
111
112     def button_left_click(self, event):
113         self.step_backward()
114
115     def button_right_click(self, event):
116         self.step_forward()
117
118     def step_forward(self):
119         self.get_data()
120         self.update_plots()
121
122     def step_backward(self):
123         # Step back in file position
124         if(self.hfile.tell() >= 8*self.block_length ):
125             self.hfile.seek(-8*self.block_length, 1)
126         else:
127             self.hfile.seek(-self.hfile.tell(),1)
128         self.get_data()
129         self.update_plots()
130         
131             
132
133 #FIXME: there must be a way to do this with a Python builtin
134 def find(item_in, list_search):
135     for l in list_search:
136         if item_in == l:
137             return True
138     return False
139
140 def main():
141     usage="%prog: [options] input_filename"
142     description = "Takes a GNU Radio floating point binary file and displays the samples versus time. You can set the block size to specify how many points to read in at a time and the start position in the file. By default, the system assumes a sample rate of 1, so in time, each sample is plotted versus the sample number. To set a true time axis, set the sample rate (-R or --sample-rate) to the sample rate used when capturing the samples."
143
144     parser = OptionParser(conflict_handler="resolve", usage=usage, description=description)
145     parser.add_option("-B", "--block", type="int", default=1000,
146                       help="Specify the block size [default=%default]")
147     parser.add_option("-s", "--start", type="int", default=0,
148                       help="Specify where to start in the file [default=%default]")
149     parser.add_option("-R", "--sample-rate", type="float", default=1.0,
150                       help="Set the sampler rate of the data [default=%default]")
151     
152     (options, args) = parser.parse_args ()
153     if len(args) != 1:
154         parser.print_help()
155         raise SystemExit, 1
156     filename = args[0]
157
158     dc = draw_fft_c(filename, options)
159
160 if __name__ == "__main__":
161     try:
162         main()
163     except KeyboardInterrupt:
164         pass
165