Fahrzeug #2
							
								
								
									
										35
									
								
								fahrzeug.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								fahrzeug.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,35 @@
 | 
			
		||||
import pygame
 | 
			
		||||
import math
 | 
			
		||||
 | 
			
		||||
class Fahrzeug(pygame.sprite.Sprite):
 | 
			
		||||
    def __init__(self, x, y):
 | 
			
		||||
        super().__init__()
 | 
			
		||||
        self.image = pygame.image.load("player.png").convert_alpha()
 | 
			
		||||
        self.rect = self.image.get_rect(center=(x, y))
 | 
			
		||||
        self.rect.centerx = x
 | 
			
		||||
        self.rect.centery = y
 | 
			
		||||
        self.speed = 2
 | 
			
		||||
        self.dest_x = x
 | 
			
		||||
        self.dest_y = y
 | 
			
		||||
        self.direction = pygame.math.Vector2(0, -1)
 | 
			
		||||
        self.angle = 0
 | 
			
		||||
 | 
			
		||||
    def draw(self, win):
 | 
			
		||||
        rotated_image = pygame.transform.rotate(self.image, self.angle)
 | 
			
		||||
        rotated_rect = rotated_image.get_rect(center=self.rect.center)
 | 
			
		||||
        #self.angle += 1
 | 
			
		||||
        #pygame.draw.rect(win, (255, 0, 0), rotated_rect)
 | 
			
		||||
| 
					
	
	
	
	
	
	
	
	 
					
					Yadciel marked this conversation as resolved
					
				 
				 | 
			||||
        win.blit(rotated_image, rotated_rect)
 | 
			
		||||
 | 
			
		||||
    def update(self):
 | 
			
		||||
        if self.rect.centerx < self.dest_x:
 | 
			
		||||
            self.rect.centerx += self.speed
 | 
			
		||||
        if self.rect.centerx > self.dest_x:
 | 
			
		||||
           self.rect.centerx -= self.speed
 | 
			
		||||
        if self.rect.centery < self.dest_y:
 | 
			
		||||
            self.rect.centery += self.speed
 | 
			
		||||
        if self.rect.centery > self.dest_y:
 | 
			
		||||
            self.rect.centery -= self.speed
 | 
			
		||||
 | 
			
		||||
    def dest(self, pos):
 | 
			
		||||
        self.dest_x, self.dest_y = pos
 | 
			
		||||
							
								
								
									
										4
									
								
								game.py
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								game.py
									
									
									
									
									
								
							@@ -1,11 +1,11 @@
 | 
			
		||||
import pygame
 | 
			
		||||
import player
 | 
			
		||||
| 
					
	
	
	
	
	
	
	
	 
					
					Yadciel marked this conversation as resolved
					
						
						
							Outdated
						
					
				 
				
				
					
						Faxor
						commented  
			
		weg weg
 
			
			
		 | 
			||||
import fahrzeug
 | 
			
		||||
import sys
 | 
			
		||||
 | 
			
		||||
def start():
 | 
			
		||||
    pygame.init()
 | 
			
		||||
    win = pygame.display.set_mode((800, 800))
 | 
			
		||||
    player1 = player.Player(0, 0)
 | 
			
		||||
    player1 = fahrzeug.Fahrzeug(0, 0)
 | 
			
		||||
 | 
			
		||||
    # Farben
 | 
			
		||||
    white = (255, 255, 255)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										36
									
								
								player.py
									
									
									
									
									
								
							
							
						
						
									
										36
									
								
								player.py
									
									
									
									
									
								
							@@ -1,36 +0,0 @@
 | 
			
		||||
import pygame
 | 
			
		||||
import math
 | 
			
		||||
 | 
			
		||||
class Player(pygame.sprite.Sprite):
 | 
			
		||||
    def __init__(self, x, y):
 | 
			
		||||
        super().__init__()
 | 
			
		||||
        self.image = pygame.image.load("player.png").convert_alpha()
 | 
			
		||||
        self.rect = self.image.get_rect()
 | 
			
		||||
        self.rect.x = x
 | 
			
		||||
        self.rect.y = y
 | 
			
		||||
        self.speed = 2
 | 
			
		||||
        self.dest_x = x
 | 
			
		||||
        self.dest_y = y
 | 
			
		||||
        self.direction = pygame.math.Vector2(1, 0)
 | 
			
		||||
 | 
			
		||||
    def draw(self, win):
 | 
			
		||||
        win.blit(self.image, self.rect)
 | 
			
		||||
 | 
			
		||||
    def update(self):
 | 
			
		||||
        if self.rect.x < self.dest_x:
 | 
			
		||||
            self.rect.x += self.speed
 | 
			
		||||
        if self.rect.x > self.dest_x:
 | 
			
		||||
            self.rect.x -= self.speed
 | 
			
		||||
        if self.rect.y < self.dest_y:
 | 
			
		||||
            self.rect.y += self.speed
 | 
			
		||||
        if self.rect.y > self.dest_y:
 | 
			
		||||
            self.rect.y -= self.speed
 | 
			
		||||
 | 
			
		||||
        direction = pygame.math.Vector2(self.dest_x - self.rect.centerx, self.dest_y - self.rect.centery)
 | 
			
		||||
        angle = -math.degrees(math.atan2(direction.y, direction.x))
 | 
			
		||||
        self.image = pygame.transform.rotate(self.image, angle)
 | 
			
		||||
        self.rect = self.image.get_rect(center=self.rect.center)
 | 
			
		||||
        self.direction = direction.normalize()
 | 
			
		||||
 | 
			
		||||
    def dest(self, pos):
 | 
			
		||||
        self.dest_x, self.dest_y = pos
 | 
			
		||||
		Reference in New Issue
	
	Block a user
	
kommentar?