Working accelerated 2D rendering
This commit is contained in:
parent
ade6682918
commit
0a025ec13a
@ -50,11 +50,12 @@ TEXTURE_SIZE = 64
|
|||||||
# Raycast cfg
|
# Raycast cfg
|
||||||
RAYCAST_WIN_WIDTH = 1000
|
RAYCAST_WIN_WIDTH = 1000
|
||||||
RAYCAST_WIN_HEIGHT = 1000
|
RAYCAST_WIN_HEIGHT = 1000
|
||||||
RAYCAST_RENDER_WIDTH = int(RAYCAST_WIN_WIDTH / 4)
|
RAYCAST_RENDER_MULTIPLIER = 4
|
||||||
RAYCAST_RENDER_HEIGHT = int(RAYCAST_WIN_HEIGHT / 4)
|
RAYCAST_RENDER_WIDTH = int(RAYCAST_WIN_WIDTH / RAYCAST_RENDER_MULTIPLIER)
|
||||||
|
RAYCAST_RENDER_HEIGHT = int(RAYCAST_WIN_HEIGHT / RAYCAST_RENDER_MULTIPLIER)
|
||||||
DOF = 2*MAP_SIZE # Depth Of Field
|
DOF = 2*MAP_SIZE # Depth Of Field
|
||||||
CEILING_COLOR = sdl2.ext.Color(0,128,255,255)
|
CEILING_COLOR = [0,128,255]
|
||||||
FLOOR_COLOR = sdl2.ext.Color(64,64,64,255)
|
FLOOR_COLOR = [64,64,64]
|
||||||
|
|
||||||
# Player cfg
|
# Player cfg
|
||||||
PLAYER_SPEED = 8
|
PLAYER_SPEED = 8
|
||||||
@ -122,7 +123,6 @@ class Main:
|
|||||||
self.raycastWindow = sdl2.SDL_CreateWindow(b"3D View", 100, 100, RAYCAST_WIN_WIDTH, RAYCAST_WIN_HEIGHT,sdl2.SDL_WINDOW_SHOWN)
|
self.raycastWindow = sdl2.SDL_CreateWindow(b"3D View", 100, 100, RAYCAST_WIN_WIDTH, RAYCAST_WIN_HEIGHT,sdl2.SDL_WINDOW_SHOWN)
|
||||||
self.raycastRenderer = sdl2.SDL_CreateRenderer(self.raycastWindow, -1,sdl2.SDL_RENDERER_ACCELERATED |sdl2.SDL_RENDERER_PRESENTVSYNC)
|
self.raycastRenderer = sdl2.SDL_CreateRenderer(self.raycastWindow, -1,sdl2.SDL_RENDERER_ACCELERATED |sdl2.SDL_RENDERER_PRESENTVSYNC)
|
||||||
self.raycastSurface = sdl2.SDL_CreateRGBSurface(0,RAYCAST_WIN_WIDTH,RAYCAST_WIN_HEIGHT,32,0,0,0,0)
|
self.raycastSurface = sdl2.SDL_CreateRGBSurface(0,RAYCAST_WIN_WIDTH,RAYCAST_WIN_HEIGHT,32,0,0,0,0)
|
||||||
self.raycast_u32_pixels = ctypes.cast(self.raycastSurface.contents.pixels, ctypes.POINTER(ctypes.c_uint32)) # Raw SDL surface pixel array
|
|
||||||
|
|
||||||
# Player
|
# Player
|
||||||
self.player_position = {"x": int(MAP_SCALE * PLAYER_SPAWN_POSITION["x"]), "y": int(MAP_SCALE * PLAYER_SPAWN_POSITION["y"]), "r": PLAYER_SPAWN_POSITION["r"]} # r is rotation in radiants
|
self.player_position = {"x": int(MAP_SCALE * PLAYER_SPAWN_POSITION["x"]), "y": int(MAP_SCALE * PLAYER_SPAWN_POSITION["y"]), "r": PLAYER_SPAWN_POSITION["r"]} # r is rotation in radiants
|
||||||
@ -215,15 +215,7 @@ class Main:
|
|||||||
self.draw2Dmap()
|
self.draw2Dmap()
|
||||||
self.drawPlayer()
|
self.drawPlayer()
|
||||||
|
|
||||||
|
|
||||||
for i in range(0, RAYCAST_WIN_WIDTH * RAYCAST_WIN_HEIGHT):
|
|
||||||
self.raycast_u32_pixels[i] = (64 << 16) + (64 << 8) + 64
|
|
||||||
|
|
||||||
self.drawRays()
|
self.drawRays()
|
||||||
|
|
||||||
sdl2.SDL_RenderClear(self.raycastRenderer)
|
|
||||||
raycastTexture = sdl2.SDL_CreateTextureFromSurface(self.raycastRenderer, self.raycastSurface)
|
|
||||||
sdl2.SDL_RenderCopy(self.raycastRenderer, raycastTexture, None, None)
|
|
||||||
sdl2.SDL_RenderPresent(self.raycastRenderer)
|
sdl2.SDL_RenderPresent(self.raycastRenderer)
|
||||||
|
|
||||||
def drawPlayer(self):
|
def drawPlayer(self):
|
||||||
@ -249,8 +241,12 @@ class Main:
|
|||||||
sdl2.ext.draw.fill(self.mapSurface, sdl2.ext.Color(color,color,color,255), (posX, posY, MAP_SCALE - 1, MAP_SCALE - 1))
|
sdl2.ext.draw.fill(self.mapSurface, sdl2.ext.Color(color,color,color,255), (posX, posY, MAP_SCALE - 1, MAP_SCALE - 1))
|
||||||
|
|
||||||
def drawRays(self):
|
def drawRays(self):
|
||||||
#sdl2.ext.draw.fill(self.raycastSurface, CEILING_COLOR, (0, 0, RAYCAST_WIN_WIDTH, RAYCAST_WIN_HEIGHT/2)) # Clears upper raycast screen (draws ceiling)
|
# Ceiling
|
||||||
#sdl2.ext.draw.fill(self.raycastSurface, FLOOR_COLOR, (0, RAYCAST_WIN_HEIGHT/2, RAYCAST_WIN_WIDTH, RAYCAST_WIN_HEIGHT/2)) # Clears upper raycast screen (draws floor)
|
sdl2.SDL_SetRenderDrawColor(self.raycastRenderer, CEILING_COLOR[0], CEILING_COLOR[1], CEILING_COLOR[2], sdl2.SDL_ALPHA_OPAQUE)
|
||||||
|
sdl2.SDL_RenderClear(self.raycastRenderer)
|
||||||
|
# Floor
|
||||||
|
sdl2.SDL_SetRenderDrawColor(self.raycastRenderer, FLOOR_COLOR[0], FLOOR_COLOR[1], FLOOR_COLOR[2], sdl2.SDL_ALPHA_OPAQUE)
|
||||||
|
sdl2.SDL_RenderFillRect(self.raycastRenderer, sdl2.SDL_Rect(0, int(RAYCAST_WIN_HEIGHT/2), RAYCAST_WIN_WIDTH, int(RAYCAST_WIN_HEIGHT)))
|
||||||
|
|
||||||
# Casts rays for raycasting
|
# Casts rays for raycasting
|
||||||
playerAngle = self.player_position["r"]
|
playerAngle = self.player_position["r"]
|
||||||
@ -404,12 +400,15 @@ class Main:
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
# Draw segment (all is scaled x4)
|
# Draw segment (all is scaled x4)
|
||||||
x = i * 4
|
|
||||||
for idx in range(int(lineStart * 4) * RAYCAST_WIN_WIDTH + x, int(lineEnd * 4) * RAYCAST_WIN_WIDTH + x, RAYCAST_WIN_WIDTH):
|
b = color & 0b000000000000000011111111
|
||||||
self.raycast_u32_pixels[idx] = color
|
g = color >> 8 & 0b000000000000000011111111
|
||||||
self.raycast_u32_pixels[idx + 1] = color
|
r = color >> 16 & 0b000000000000000011111111
|
||||||
self.raycast_u32_pixels[idx + 2] = color
|
sdl2.SDL_SetRenderDrawColor(self.raycastRenderer, r, g, b, sdl2.SDL_ALPHA_OPAQUE) # Non fare in tutti i cicli
|
||||||
self.raycast_u32_pixels[idx + 3] = color
|
|
||||||
|
x = i * RAYCAST_RENDER_MULTIPLIER
|
||||||
|
#sdl2.SDL_RenderFillRect(self.raycastRenderer, sdl2.SDL_Rect(x, int(lineStart * RAYCAST_RENDER_MULTIPLIER), RAYCAST_RENDER_MULTIPLIER, int((lineEnd - lineStart) * RAYCAST_RENDER_MULTIPLIER) + 1))
|
||||||
|
sdl2.SDL_RenderFillRectF(self.raycastRenderer, sdl2.SDL_FRect(x, lineStart * RAYCAST_RENDER_MULTIPLIER, RAYCAST_RENDER_MULTIPLIER, (lineEnd - lineStart) * RAYCAST_RENDER_MULTIPLIER))
|
||||||
|
|
||||||
def shade(self, color):
|
def shade(self, color):
|
||||||
# Obtain channels
|
# Obtain channels
|
||||||
|
Loading…
Reference in New Issue
Block a user