Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/BatallaNaval.Activity/BatallaNaval.py
blob: 104c10bdc9e672a33df693f1f3402e67c9ee2ea2 (plain)
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
#!/usr/bin/env python
# -*- coding: cp1252 -*-

import pygtk
pygtk.require('2.0')
import gtk

import random

try:
    from sugar.activity.activity import Activity, ActivityToolbox
except:
    pass

class PanelPrincipal(gtk.HBox):
    
    def __init__(self):
        gtk.HBox.__init__(self, True)
        
        self.tablero1 = Tablero(None)   # tablero propio  
        self.tablero2 = Tablero(self.jugada_hecha)   # tablero enemigo
      
        self.barcos_propios = crear_barcos()
        for barco in self.barcos_propios:
            self.tablero1.agregar_barco(barco, True)

        print "Barcos Enemigos"
        self.barcos_enemigos = crear_barcos()
        for barco in self.barcos_enemigos:
            self.tablero2.agregar_barco(barco, False)
            print "%s: %s" % (barco.nombre, barco.pos)

        self.add(self.tablero1)
        self.add(self.tablero2)
        
        self.show_all()
        
        self.jugadas_enemigas= []   # Lleva un registro de las jugadas hechas por la computadora
        
    def jugada_hecha(self):
        # Cuando se hace una jugada, la computadora hace una jugada al azar sobre el tablero propio
        if len(self.jugadas_enemigas) == 100:
            return
        
        ok = False
        while not ok:
            x, y = random.randint(1, 10), random.randint(1, 10)
            if not (x, y) in self.jugadas_enemigas:
                ok = True
        
        self.tablero1.filas[x-1][y-1].clicked()
        
def crear_barcos():
        
    barcos = [
        Barco("Portaaviones", 5, None),
        Barco("Acorazado", 4, None),
        Barco("Crucero", 3, None),
        Barco("Submarino", 3, None),
        Barco("Destructor", 2, None)]
        
    celdas_ocupadas = []
    
    for barco in barcos:
        ok = False
        while not ok:
            # Calculo coordenadas random, asumo orientacion horizontal
            posx = random.randint(1, 10)
            posy = random.randint(1, 10-barco.largo+1)
            
            barco.pos = (posx, posy)
            ok = True
            for celda in barco.get_celdas():
                if celda in celdas_ocupadas:
                    ok = False
            if ok:
                celdas_ocupadas.extend(barco.get_celdas())
    return barcos

class Celda(gtk.Button):
    
    def __init__(self, pos, clicked_cb):
        gtk.Button.__init__(self)
        self.pos = pos
        
        self.connect("clicked", clicked_cb)
    
    def ocultar(self):
        self.set_no_show_all(True)
        self.hide()
    
    def tocado(self):
        color = gtk.gdk.Color(65535,65535/2,0)
        self.modify_bg(gtk.STATE_NORMAL, color)
        self.modify_bg(gtk.STATE_PRELIGHT, color)
        self.show()     # Por si está oculta atrás de un barco
        
    def agua(self):
        color = gtk.gdk.Color(0,0,65535/2)
        self.modify_bg(gtk.STATE_NORMAL, color)
        self.modify_bg(gtk.STATE_PRELIGHT, color)
        self.show()     # Por si está oculta atrás de un barco
        
class Tablero(gtk.Frame):
    
    def __init__(self, llamada_jugada_hecha):
        gtk.Frame.__init__(self)

        # Números
        tabla_numeros = gtk.Table(1, 10, True)
        for i in range(1, 11):
            label = gtk.Label(str(i))
            tabla_numeros.attach(label, i-1, i, 0, 1)
        
        # Letras
        tabla_letras = gtk.Table(10, 1, True)
        for i in range(1, 11):
            char = chr( ord('A') + i - 1 )
            label = gtk.Label(char)
            tabla_letras.attach(label, 0, 1, i-1, i)
        
        # Se hace una tabla para ubicar las letras, los números y el tablero
        self.tabla = gtk.Table(2, 2, False)
        self.add(self.tabla)
        
        opciones = gtk.SHRINK|gtk.FILL
        
        label = gtk.Label("      ")
        self.tabla.attach(label, 0, 1, 0, 1, xoptions=opciones, yoptions=opciones)
        
        self.tabla.attach(tabla_numeros, 1, 2, 0, 1, xoptions=opciones, yoptions=opciones)
        self.tabla.attach(tabla_letras, 0, 1, 1, 2, xoptions=opciones, yoptions=opciones)
        
        self.filas = []
        
        # El tablero es otra tabla
        self.tabla_celdas = gtk.Table(10, 10, True)
        self.tabla.attach(self.tabla_celdas, 1, 2, 1, 2, xoptions=gtk.FILL|gtk.EXPAND, yoptions=gtk.FILL|gtk.EXPAND)

        for i in range(1, 11):
            row = []
            for j in range(1, 11):
                left = j - 1
                top = i - 1
                celda = Celda((i, j), self.celda_clickeada)
                row.append(celda)
                self.tabla_celdas.attach(celda, left, j, top, i)
                #print label.get_text()
            self.filas.append(row)
        
        self.barcos = []     # Los barcos que hay en el tablero
        
        self.llamada_jugada_hecha = llamada_jugada_hecha
    
    def agregar_barco(self, barco, show):
        self.barcos.append(barco)
        if show:
            for i in barco.get_filas():
                for j in barco.get_cols():
                    self.ocultar_celda(i, j)
            izq = barco.get_inicio()[1]-1
            der = barco.get_fin()[1]
            arr = barco.get_inicio()[0]-1
            aba = barco.get_fin()[0]
            self.tabla_celdas.attach(barco, izq, der, arr, aba)
        
    def ocultar_celda(self, i, j):
        self.filas[i-1][j-1].ocultar()

    def celda_clickeada(self, celda):
        tocado = False
        for barco in self.barcos:
            if celda.pos in barco.get_celdas():
                tocado = True
                celda.tocado()
        if not tocado:
            celda.agua()
        
        if self.llamada_jugada_hecha:
            self.llamada_jugada_hecha()

class Barco(gtk.Frame):
    
    horizontal = 'H'
    vertical = 'V'
    
    def __init__(self, nombre, largo, pos, orientacion = horizontal):
        #gtk.Label.__init__(self, nombre)
        gtk.Frame.__init__(self)
        self.nombre = nombre
        self.largo = largo
        self.orientacion = orientacion
        self.pos = pos
        
        self.add(gtk.Label(nombre))
        
        self.show()
            
    def get_inicio(self):
        return self.pos
    
    def get_fin(self):
        if self.orientacion == Barco.horizontal:
            return self.pos[0], self.pos[1] + self.largo - 1
        else:
            return self.pos[0] + self.largo - 1, self.pos[1]

    def get_filas(self):
        return range(self.get_inicio()[0], self.get_fin()[0]+1)
    
    def get_cols(self):
        return range(self.get_inicio()[1], self.get_fin()[1]+1)
    
    def get_celdas(self):
        return [(f, c) for f in self.get_filas() for c in self.get_cols()]
    
# Esta función es el punto de entrada común para sugar y modo standalone
# standalone es un boolean que indica si es Standalone o se ejecuta desde Sugar
def init(standalone, ventana_principal):
    
    panel_principal = PanelPrincipal()
    
    if not standalone:
        toolbox = ActivityToolbox(toplevel_window)
        ventana_principal.set_toolbox(toolbox)
        toolbox.show()
        ventana_principal.set_canvas(panel_principal)
    else:
        ventana_principal.add(panel_principal)
    
    ventana_principal.set_title("Batalla Naval - ceibalJAM")
    ventana_principal.connect("destroy", lambda wid: gtk.main_quit())
    ventana_principal.connect("delete_event", lambda a1, a2: gtk.main_quit())

    ventana_principal.show()

# Este es el procedimiento principal en modo standalone
def main():
    ventana_principal = gtk.Window(gtk.WINDOW_TOPLEVEL)
    init(True, ventana_principal)
    gtk.main()
    return 0

# Este código se ejecuta sólo cuando se ejecuta directo ese módulo (no cuando se importa desde sugar)
if __name__ == "__main__":
   main()