{-

Definition of the Klein bottle as a HIT

-}
{-# OPTIONS --safe #-}
module Cubical.HITs.KleinBottle.Properties where

open import Cubical.Core.Everything

open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Equiv
open import Cubical.Foundations.Isomorphism
open import Cubical.Foundations.GroupoidLaws
open import Cubical.Foundations.HLevels
open import Cubical.Foundations.Transport
open import Cubical.Foundations.Univalence
open import Cubical.Data.Int
open import Cubical.Data.Sigma
open import Cubical.HITs.S1 hiding (rec)
open import Cubical.HITs.PropositionalTruncation as PropTrunc hiding (rec)

open import Cubical.HITs.KleinBottle.Base

rec :  {} {A : Type } (x : A)
     (l1 l2 : x  x)
   Square l2 l2 (sym l1) l1
   KleinBottle  A
rec x l1 l2 sq point = x
rec x l1 l2 sq (line1 i) = l1 i
rec x l1 l2 sq (line2 i) = l2 i
rec x l1 l2 sq (square i i₁) = sq i i₁

elimSet :  {} {A : KleinBottle  Type }
   ((x : _)  isSet (A x))
   (a₀ : A point)
   (l1 : PathP  i  A (line1 i)) a₀ a₀)
   (l2 : PathP  i  A (line2 i)) a₀ a₀)
   (x : _)  A x
elimSet set a₀ l1 l2 point = a₀
elimSet set a₀ l1 l2 (line1 i) = l1 i
elimSet set a₀ l1 l2 (line2 i) = l2 i
elimSet {A = A} set a₀ l1 l2 (square i j) = h i j
  where
  h : SquareP  i j  A (square i j)) l2 l2 (symP l1) l1
  h = toPathP (isOfHLevelPathP' 1 (set _) _ _ _ _)

elimProp :  {} {A : KleinBottle  Type }
   ((x : _)  isProp (A x))
   (a₀ : A point)
   (x : _)  A x
elimProp prop a₀ =
  elimSet  _  isProp→isSet (prop _))
    a₀
    (isProp→PathP  _  prop _) _ _)
    (isProp→PathP  _  prop _) _ _)

loop1 :   KleinBottle
loop1 base = point
loop1 (loop i) = line1 i

invS¹Loop :   Type
invS¹Loop base = 
invS¹Loop (loop i) = invS¹Path i

loop1Inv : (s : )  loop1 (invLooper s)  loop1 s
loop1Inv base = line2
loop1Inv (loop i) = square i

twist : (s : )  PathP  i  invS¹Path i) s (invLooper s)
twist s i = glue  {(i = i0)  s; (i = i1)  invLooper s}) (invLooper s)

twistBaseLoop : (s : )  invS¹Loop s
twistBaseLoop base = base
twistBaseLoop (loop i) = twist base i

kleinBottle≃Σ : KleinBottle  Σ  invS¹Loop
kleinBottle≃Σ = isoToEquiv (iso fro to froTo toFro)
  where
  fro : KleinBottle  Σ  invS¹Loop
  fro point = (base , base)
  fro (line1 i) = (base , loop i)
  fro (line2 j) = (loop (~ j) , twist base (~ j))
  fro (square i j) = (loop (~ j) , twist (loop i) (~ j))

  toLoopFiller : (j : I)  ua invS¹Equiv j  I  KleinBottle
  toLoopFiller j g l =
    hfill
       l  λ
        { (j = i0)  loop1Inv g l
        ; (j = i1)  loop1 g
        })
      (inS (loop1 (unglue (j  ~ j) g)))
      l

  to : Σ  invS¹Loop  KleinBottle
  to (base , s) = loop1 s
  to (loop j , g) = toLoopFiller j g i1

  toFro : (a : KleinBottle)  to (fro a)  a
  toFro point = refl
  toFro (line1 i) = refl
  toFro (line2 j) k = lUnit line2 (~ k) j
  toFro (square i j) k = lUnit (square i) (~ k) j

  froLoop1 : (s : )  fro (loop1 s)  (base , s)
  froLoop1 base = refl
  froLoop1 (loop i) = refl

  froLoop1Inv :
    PathP  k  (s : )  froLoop1 (invLooper s) k  froLoop1 s k)
       s l  fro (loop1Inv s l))
       s l  loop (~ l) , twist s (~ l))
  froLoop1Inv k base l = loop (~ l) , twist base (~ l)
  froLoop1Inv k (loop i) l = loop (~ l) , twist (loop i) (~ l)

  froTo : (a : Σ  invS¹Loop)  fro (to a)  a
  froTo (base , s) = froLoop1 s
  froTo (loop j , g) k =
    hcomp
       l  λ
        { (j = i0)  froLoop1Inv k g l
        ; (j = i1)  froLoop1 g k
        ; (k = i0)  fro (toLoopFiller j g l)
        ; (k = i1) 
          ( loop (j  ~ l)
          , glue
             
               { (j = i0) (l = i1)  g
               ; (j = i1)  g
               ; (l = i0)  unglue (j  ~ j) g
               })
             (unglue (j  ~ j) g)
          )
        })
      (froLoop1 (unglue (j  ~ j) g) k)

isGroupoidKleinBottle : isGroupoid KleinBottle
isGroupoidKleinBottle =
  transport  i  isGroupoid (ua kleinBottle≃Σ (~ i)))
    (isOfHLevelΣ 3 isGroupoidS¹
       s 
        PropTrunc.rec
          (isPropIsOfHLevel 3)
           p  subst  s  isGroupoid (invS¹Loop s)) p isGroupoidS¹)
          (isConnectedS¹ s)))

-- Transport across the following is too slow :(

ΩKlein≡ℤ² : Path KleinBottle point point   × 
ΩKlein≡ℤ² =
  Path KleinBottle point point
    ≡⟨  i  basePath i  basePath i) 
  Path (Σ  invS¹Loop) (base , base) (base , base)
    ≡⟨ sym ΣPath≡PathΣ 
  Σ ΩS¹  p  PathP  j  invS¹Loop (p j)) base base)
    ≡⟨  i  Σ ΩS¹  p  PathP  j  invS¹Loop (p (j  i))) (twistBaseLoop (p i)) base)) 
  ΩS¹ × ΩS¹
    ≡⟨  i  ΩS¹≡ℤ i × ΩS¹≡ℤ i) 
   ×  
  where
  basePath : PathP  i  ua kleinBottle≃Σ i) point (base , base)
  basePath i = glue  {(i = i0)  point; (i = i1)  base , base}) (base , base)

-- We can at least define the winding function directly and get results on small examples

windingKlein : Path KleinBottle point point   × 
windingKlein p = (z₀ , z₁)
  where
  step₀ : Path (Σ  invS¹Loop) (base , base) (base , base)
  step₀ =  i  kleinBottle≃Σ .fst (p i))

  z₀ : 
  z₀ = winding  i  kleinBottle≃Σ .fst (p i) .fst)

  z₁ : 
  z₁ = winding
    (transport
       i  PathP  j  invS¹Loop (step₀ (j  i) .fst)) (twistBaseLoop (step₀ i .fst)) base)
      (cong snd step₀))

_ : windingKlein line1  (pos 0 , pos 1)
_ = refl

_ : windingKlein line2  (negsuc 0 , pos 0)
_ = refl

_ : windingKlein (line1  line2)  (negsuc 0 , negsuc 0)
_ = refl

_ : windingKlein (line1  line2  line1)  (negsuc 0 , pos 0)
_ = refl